aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2015-07-18 21:22:44 +0200
committerClifford Wolf <clifford@clifford.at>2015-07-18 21:22:44 +0200
commitae459d7ae14bbcb545b1dbcb6ecb4149b5a1f278 (patch)
treec1779d50f29bc628c05cd5493a1a2cf1ac63cb6e /Makefile
parent3b079a6c5e986b96fe0b3113c8ecd4619f28feba (diff)
downloadicestorm-ae459d7ae14bbcb545b1dbcb6ecb4149b5a1f278.tar.gz
icestorm-ae459d7ae14bbcb545b1dbcb6ecb4149b5a1f278.tar.bz2
icestorm-ae459d7ae14bbcb545b1dbcb6ecb4149b5a1f278.zip
Various Makefile cleanups
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index a070dc3..be631e7 100644
--- a/Makefile
+++ b/Makefile
@@ -4,6 +4,11 @@ all:
$(MAKE) -C icepack
$(MAKE) -C iceprog
+clean:
+ $(MAKE) -C icebox clean
+ $(MAKE) -C icepack clean
+ $(MAKE) -C iceprog clean
+
install:
$(MAKE) -C icebox install
$(MAKE) -C icepack install
@@ -14,5 +19,5 @@ uninstall:
$(MAKE) -C icepack uninstall
$(MAKE) -C iceprog uninstall
-.PHONY: all install uninstall
+.PHONY: all clean install uninstall