blob: 942ade9b2da9404305991ea65cdbfee5b4fd42c5 [file] [log] [blame]
all: a.out
CFLAGS=-I. -g3 -O2 -Djeff=2
a.out: hello.o x.o
gcc -g -o a.out $?
hello.o: hello.c somehdr.h
gcc -c $(CFLAGS) hello.c
x.o: x.c
gcc -c $(CFLAGS) $<
clean:
rm *.o *.out