diff options
| author | azidar | 2015-02-24 16:30:40 -0800 |
|---|---|---|
| committer | azidar | 2015-02-24 16:30:40 -0800 |
| commit | d0dddb37c056647e7fed4e9771650ef41f85bae3 (patch) | |
| tree | 8a72fc312aa8a0338b331454ce66fb9c81b173c6 /Makefile | |
| parent | 2353d640907a7b04477b06a5b3da6b7bbafc448d (diff) | |
Rewrote README to include installation instructions and stanza justification. Added response to feedback, locatd in notes/feedbackQA*. Use two different mains, one for testing and one for deployment (make build vs make build-deploy).
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 13 |
1 files changed, 8 insertions, 5 deletions
@@ -6,16 +6,19 @@ firrtl_dir ?= $(root_dir)/src/main/stanza all: build check -install-stanza: +install: + cd src/lib && unzip stanzam.zip + cd stanzam && sudo ./stanzam -platform os-x -install /usr/local/bin/stanzam -build: +build-deploy: cd $(firrtl_dir) && stanzam -i firrtl-main.stanza -o $(root_dir)/utils/bin/firrtl -# Runs single test +build: + cd $(firrtl_dir) && stanzam -i firrtl-test-main.stanza -o $(root_dir)/utils/bin/firrtl + check: cd $(test_dir)/passes && lit -v . --path=$(root_dir)/utils/bin/ clean: - rm -f $(test_dir)/passes/*/*.out - rm -f $(test_dir)/passes/*.out + rm -f $(test_dir)/*/*/*.out rm -f $(test_dir)/*/*.out |
