Makefile (raw) (210B)
1 CC := gcc 2 SRC := buf.c 3 OUT := piecetable 4 OPTS := -g -Wall -Wpedantic 5 6 all: $(static) 7 8 static: 9 ${CC} $(OPTS) -c $(SRC) -o $(OUT).o 10 ar rcs lib$(OUT).a $(OUT).o 11 test: 12 ${CC} $(OPTS) $(SRC) test.c -o $(OUT)-test