aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorazidar2015-03-18 17:28:31 -0700
committerazidar2015-03-18 17:28:31 -0700
commitc61accd4f1c46fa24cf7354d6326141950d827c8 (patch)
tree03f0d705a2e4c98e856bd4205e1d8a5ba412ce32 /Makefile
parentf0b8da76b17e568bd51a95ac04e7bad6ce4232c5 (diff)
Finished expand accessors and lower to ground
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile14
1 files changed, 13 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 4259b7ec..543ee75c 100644
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,14 @@
# Installs stanza into /usr/local/bin
# TODO Talk to Patrick to fill this in
+
root_dir ?= $(PWD)
test_dir ?= $(root_dir)/test
firrtl_dir ?= $(root_dir)/src/main/stanza
-all: build check
+all-noise:
+ ${MAKE} all || ${MAKE} fail
+
+all: build check done
install:
cd src/lib && unzip stanzam.zip
@@ -22,3 +26,11 @@ check:
clean:
rm -f $(test_dir)/*/*/*.out
rm -f $(test_dir)/*/*.out
+
+done:
+ say "done"
+
+fail:
+ say "fail"
+
+.PHONY: all install build-deploy build check clean fail succeed