summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 2027646..5fcfbbc 100644
--- a/Makefile
+++ b/Makefile
@@ -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