diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,10 +1,11 @@ CFLAGS+=-std=c11 -Wall -Wextra -Wpedantic -D_POSIX_C_SOURCE=200809L +UTILS=cat fallocate false true -all: cat fallocate +all: ${UTILS} cat: cat.o panic.o clean: - rm -f *.o cat fallocate + rm -f *.o ${UTILS} .PHONY: all clean |