summaryrefslogtreecommitdiff
path: root/tools/omar/Makefile
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2025-05-04 00:52:45 -0400
committerIan Moffett <ian@osmora.org>2025-05-04 00:52:45 -0400
commit9adc9f74d66366e72d83a2ca9142c394f5ad5e2c (patch)
treecba2e677967dd4e22fbe1488c071ef5605a27262 /tools/omar/Makefile
parent686747bea40b4c01243ffcca2c830686fcf96d8e (diff)
parent2e7a8f3592dc4023256a2e2fcb95f710207d6bdc (diff)
Merge branch 'build-openbsd' into expt
Diffstat (limited to 'tools/omar/Makefile')
-rw-r--r--tools/omar/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/tools/omar/Makefile b/tools/omar/Makefile
new file mode 100644
index 0000000..ee30260
--- /dev/null
+++ b/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/