CFLAGS += -Wall .PHONY: all depend clean check install SRCS = list_test.c list.c OBJS = list_test.o list.o all: list_test list_test: $(OBJS) $(CC) -o $@ $(LDFLAGS) $(CFLAGS) $^ depend: makedepend -s "# makedepend depends on me"\ -- $(CFLAGS) -- $(SRCS) clean: rm -f $(OBJS) list_test check: @echo "No checks defined, sorry" install: @echo "Nothing to install yet"