diff options
author | Aki <please@ignore.pl> | 2022-01-24 21:26:19 +0100 |
---|---|---|
committer | Aki <please@ignore.pl> | 2022-01-24 21:26:19 +0100 |
commit | e255bb961b9db20fa9602e9313d9949ee92ec702 (patch) | |
tree | d2621784ef6ec11345403b38e02889b5fb9cae0f /Makefile | |
parent | e4c74e9d1c97feccb0c5337baceab4fc4aec592c (diff) | |
download | coreutils-e255bb961b9db20fa9602e9313d9949ee92ec702.zip coreutils-e255bb961b9db20fa9602e9313d9949ee92ec702.tar.gz coreutils-e255bb961b9db20fa9602e9313d9949ee92ec702.tar.bz2 |
Added false and true utilities
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 |