TARGETS= step1.e

all: step1.e

step1.e: step1.c
	gcc -g -o step1.e step1.c

clean:
	-rm step1.e
