diff options
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 |
