From e255bb961b9db20fa9602e9313d9949ee92ec702 Mon Sep 17 00:00:00 2001 From: Aki Date: Mon, 24 Jan 2022 21:26:19 +0100 Subject: Added false and true utilities --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'Makefile') 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 -- cgit v1.1