summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorKathy Gray2014-08-05 18:21:55 +0100
committerKathy Gray2014-08-05 18:21:55 +0100
commita6888e438306d1d8249dcb0e7003443bc3595708 (patch)
tree410167f7bc24ac97fddb3045c43242f792f9e395 /Makefile
parentf0df692871c86183f1a5233ab90a8a20ce9d1f57 (diff)
Add some reasonable targets for the top level make file, including make test and make power.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 340a782b..c7662ff5 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-.PHONY: all src language clean
+.PHONY: all src language clean power test
all: src language
@@ -8,5 +8,11 @@ src: language
language:
$(MAKE) -C $@
+test:
+ $(MAKE) -C src test
+
+power:
+ $(MAKE) -C src power
+
clean:
$(MAKE) -C src clean