summaryrefslogtreecommitdiff
path: root/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 /Makefile
initial commit
Signed-off-by: Chloe M <chloe@faracom.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..f6bba39
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,14 @@
+.PHONY: all
+all: bin levd newpass
+
+.PHONY: bin
+bin:
+ mkdir -p bin/
+
+.PHONY: newpass
+newpass:
+ cd newpass/; $(MAKE)
+
+.PHONY: levd
+levd:
+ cd levd/; $(MAKE)