aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Spragg <adam@spra.gg>2022-03-17 14:43:49 +0000
committerAdam Spragg <adam@spra.gg>2022-03-17 14:43:49 +0000
commit08296ef2b88b340c6c012635a39895d8e68276e0 (patch)
treecc920f0f6ce16a3aa9cfa951e9d28d3a5f7b6801
parent9d2e75bcfade4accd67685440b832e7143cbedda (diff)
Add the `clean` and `distclean` make targets
-rw-r--r--makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/makefile b/makefile
index c8ff8f2..3704027 100644
--- a/makefile
+++ b/makefile
@@ -54,6 +54,16 @@ uninstall:
systemctl daemon-reload
+.PHONY: clean
+clean:
+ @true
+
+
+.PHONY: distclean
+distclean:
+ rm -f prefix.mk
+
+
.PHONY: prefix.mk
prefix.mk:
@echo 'PREFIX=$(PREFIX)' >$@