summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorauric <104602845+ihateamongus@users.noreply.github.com>2025-09-08 21:02:18 -0500
committerauric <104602845+ihateamongus@users.noreply.github.com>2025-09-08 21:02:18 -0500
commit9e10c2714cd159ce953155225cbe2ecc6810bd7f (patch)
tree39cf7b7d40d3e9808e436cfa208bccd9a8c43208 /Makefile
parentd11aec86841f77edd6eba3e07aa1e7e591e9da2a (diff)
Add minimal X11 login manager and cleanup
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..18bfc1b
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,11 @@
+SUBDIRS = dmenu dwm slock st tools slogin
+
+.PHONY: all $(SUBDIRS) clean
+
+all: $(SUBDIRS)
+
+$(SUBDIRS):
+ $(MAKE) -C $@
+
+clean:
+ for d in $(SUBDIRS); do $(MAKE) -C $$d clean; done