From e4c74e9d1c97feccb0c5337baceab4fc4aec592c Mon Sep 17 00:00:00 2001 From: Aki Date: Mon, 24 Jan 2022 21:17:08 +0100 Subject: Merged two random sources into this repository --- Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..2027646 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +CFLAGS+=-std=c11 -Wall -Wextra -Wpedantic -D_POSIX_C_SOURCE=200809L + +all: cat fallocate + +cat: cat.o panic.o + +clean: + rm -f *.o cat fallocate + +.PHONY: all clean -- cgit v1.1