CC = /Developer/usr/bin/clang CFLAGS = -O0 -g -pedantic -pedantic-errors -Wall -Werror -Wextra -c -ansi OBJS = bignum.o clean: -rm *.o # base objects with their dependencies all: fibs fibs: ${OBJS} ${CC} ${INCLUDES} -lm -o $@ ${OBJS} %.o: %.c ${CC} ${INCLUDES} $^ $(CFLAGS)