DE_O := data_element.o dec_logic.o work_queue.o static_queue.o test.o DE_H := compat.h data_element.h dec_logic.h gensym.h log.h queue.h stack.h static_queue.h work_queue.h .phony: all clean all: test test: $(DE_O) gcc $(DE_O) -o test clean: rm -f *.o *~ %.o: %.c $(DE_H) gcc -include compat.h -c $<