summaryrefslogtreecommitdiff
path: root/levd/Makefile
diff options
context:
space:
mode:
authorChloe M <chloe@faracom.org>2026-08-15 17:03:19 -0500
committerChloe M <chloe@faracom.org>2026-08-15 17:03:19 -0500
commitbbc81042481e8e32a7e5cc1d90d53d585a548d23 (patch)
treedfee9ba01a4a5c7c90a1d09472c19859f9e5e650 /levd/Makefile
initial commit
Signed-off-by: Chloe M <chloe@faracom.org>
Diffstat (limited to 'levd/Makefile')
-rw-r--r--levd/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/levd/Makefile b/levd/Makefile
new file mode 100644
index 0000000..9088129
--- /dev/null
+++ b/levd/Makefile
@@ -0,0 +1,13 @@
+CFILES = \
+ levd.c
+
+OUT_FILE = ../bin/levd
+CFLAGS = -Wall -pedantic
+CC = clang
+
+.PHONY: all
+all: $(OUT_FILE)
+
+.PHONY: $(OUT_FILE)
+$(OUT_FILE):
+ $(CC) $(CFLAGS) $(CFILES) -o $@