summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2022-01-24 21:26:19 +0100
committerAki <please@ignore.pl>2022-01-24 21:26:19 +0100
commite255bb961b9db20fa9602e9313d9949ee92ec702 (patch)
treed2621784ef6ec11345403b38e02889b5fb9cae0f /Makefile
parente4c74e9d1c97feccb0c5337baceab4fc4aec592c (diff)
downloadcoreutils-e255bb961b9db20fa9602e9313d9949ee92ec702.zip
coreutils-e255bb961b9db20fa9602e9313d9949ee92ec702.tar.gz
coreutils-e255bb961b9db20fa9602e9313d9949ee92ec702.tar.bz2
Added false and true utilities
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