.PHONY: all all: test test: test.c linked_list.h $(CC) -o $@ ${CFLAGS} ${LDFLAGS} $< .PHONY: run-test run-test: test ./$< .PHONY: clean clean: rm -f -- test