summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorauric <104602845+ihateamongus@users.noreply.github.com>2025-09-08 21:08:47 -0500
committerGitHub <noreply@github.com>2025-09-08 21:08:47 -0500
commit9835e81684ffb53cb258c7de754998621661c15f (patch)
tree9c2b8e58b02ef1ae1440dd40101a7736d090fccc /Makefile
parente2ec2e4acbf07da282c7ce4d4370ed1a83e11e70 (diff)
parent04cfeeb799b4ee6ac990e5d6e1b5302251133d77 (diff)
Merge pull request #18 from ihateamongus/codex/add-staggering-color-effect-demo-in-tools
Add color staggering demo and minimal login manager
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