From d0dddb37c056647e7fed4e9771650ef41f85bae3 Mon Sep 17 00:00:00 2001 From: azidar Date: Tue, 24 Feb 2015 16:30:40 -0800 Subject: 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). --- Makefile | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 0dbca93e..4259b7ec 100644 --- a/Makefile +++ b/Makefile @@ -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 -- cgit v1.2.3