From f6ebc74cfa55c7d91e053752fbf8e1abc11547e6 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sat, 5 Mar 2016 18:41:43 +1300 Subject: Makefile phony targets --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index b6105a2..946feb1 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,10 @@ +.PHONY: all clean + CC = clang CFLAGS = -std=c90 -Weverything +all : cat + cat : main.o cfn.o cfp.o $(CC) $(CFLAGS) -o cat main.o cfn.o cfp.o -- cgit v1.2.3