diff options
| author | azidar | 2015-03-18 17:28:31 -0700 |
|---|---|---|
| committer | azidar | 2015-03-18 17:28:31 -0700 |
| commit | c61accd4f1c46fa24cf7354d6326141950d827c8 (patch) | |
| tree | 03f0d705a2e4c98e856bd4205e1d8a5ba412ce32 /Makefile | |
| parent | f0b8da76b17e568bd51a95ac04e7bad6ce4232c5 (diff) | |
Finished expand accessors and lower to ground
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 14 |
1 files changed, 13 insertions, 1 deletions
@@ -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 |
