summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorCameron Katri <me@cameronkatri.com>2021-02-12 10:28:22 -0500
committerCameron Katri <me@cameronkatri.com>2021-02-12 10:44:24 -0500
commit2fc37c51eb672af240b8b0c98da5dfac99ba1522 (patch)
treeeb2ac817818545e853f35958386636a8b49d7e4c /Makefile
parent9768b265bd097e561103188bb97f64ef26c6cee1 (diff)
downloadpw-darwin-2fc37c51eb672af240b8b0c98da5dfac99ba1522.tar.gz
pw-darwin-2fc37c51eb672af240b8b0c98da5dfac99ba1522.tar.zst
pw-darwin-2fc37c51eb672af240b8b0c98da5dfac99ba1522.zip
Update Makefiles
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..de21416
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,9 @@
+TOPTARGETS := all clean install
+SUBDIRS := adduser pw
+
+$(TOPTARGETS): $(SUBDIRS)
+
+$(SUBDIRS):
+ $(MAKE) -C $@ $(MAKECMDGOALS)
+
+.PHONY: $(TOPTARGETS) $(SUBDIRS)