From e698061ebaf0cf1a10c11c51a6c6cd46a331959c Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Sat, 13 Sep 2025 14:53:43 -0400 Subject: initial commit Signed-off-by: Ian Moffett --- src/tools/omar/Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/tools/omar/Makefile (limited to 'src/tools/omar/Makefile') diff --git a/src/tools/omar/Makefile b/src/tools/omar/Makefile new file mode 100644 index 0000000..ee30260 --- /dev/null +++ b/src/tools/omar/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