diff options
author | Ian Moffett <ian@osmora.org> | 2025-09-13 14:53:43 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-09-13 14:53:43 -0400 |
commit | e698061ebaf0cf1a10c11c51a6c6cd46a331959c (patch) | |
tree | 19faff0de74be4661e55478ee7d31a8427c067c6 /src/tools/omar/Makefile |
initial commit
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'src/tools/omar/Makefile')
-rw-r--r-- | src/tools/omar/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
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/ |