From ba593fcacc026ad5d90326c5dcbefd2f4ca2e63c Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Mon, 28 Apr 2025 13:54:39 -0400 Subject: Initial commit Signed-off-by: Ian Moffett --- Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..ee30260 --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +CFILES = $(shell find . -name "*.c") +CFLAGS = -pedantic +CC = gcc + +.PHONY: all +all: + mkdir -p bin/ + $(CC) $(CFLAGS) $(CFILES) -o bin/omar + +.PHONY: clean +clean: + rm -rf bin/ -- cgit v1.2.3