Makefile (306B)
1 CC=clang 2 UTILS=../utils/reading.o #../utils/stack_u64.o 3 INCLUDES=-I../utils 4 5 all: utils uppga uppgb 6 7 uppga: $(UTILS) uppga.c 8 $(CC) -Wall -o uppga uppga.c $(UTILS) $(INCLUDES) 9 10 uppgb: $(UTILS) uppgb.c 11 $(CC) -Wall -o uppgb uppgb.c $(UTILS) $(INCLUDES) 12 13 utils: 14 make -C ../utils 15 16 clean: 17 rm -rf uppga uppgb