CC ?= cc CFLAGS=-std=c99 -W -Wall -pedantic -O2 -Iinclude OBJS=fhp.o test.o APP=fhp-test all: $(OBJS) $(CC) -o $(APP) $(OBJS) %.o: %.c include/fhp/fhp.h $(CC) -c $(CFLAGS) $< clean: rm -f $(APP) $(OBJS)