CC = gcc -O2 -std=c11 -pedantic -Wall # -g LIB = qce.a OBJS = qce.o fft.o all: $(LIB) $(OBJS): qce.h Makefile $(LIB): $(OBJS) Makefile ar rcs $(LIB) $(OBJS) clean: rm -f a.out core $(OBJS) clobber: clean rm -f $(LIB)