aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authornathansmith <nathansmith@posteo.com>2025-04-29 14:04:51 +0000
committernathansmith <nathansmith@posteo.com>2025-04-29 14:04:51 +0000
commitffd314a245632a85ba5f310e8d86937091886d4d (patch)
tree2816cb5158e1e3d414cdce9f9273f426a9410f63 /Makefile
parent6d338602aa98cc9dfab39b83702af0e548286596 (diff)
downloadsldj-ffd314a245632a85ba5f310e8d86937091886d4d.tar.gz
sldj-ffd314a245632a85ba5f310e8d86937091886d4d.tar.bz2
sldj-ffd314a245632a85ba5f310e8d86937091886d4d.zip
Slow adhd work
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 7 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 241525f..f46e197 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,10 @@
+.PHONY: all
all:
- @make -C src
+ @$(MAKE) -C src
+
+.PHONY: clean
clean:
- @make -C src clean
+ @$(MAKE) -C src clean
+
%:
- @make -C src $@
+ @$(MAKE) -C src $@