diff options
| author | Andrew Waterman | 2019-08-13 07:52:44 -0700 |
|---|---|---|
| committer | Adam Izraelevitz | 2019-08-13 07:52:44 -0700 |
| commit | 0f6b9615213a2a9770974ff71b3da3f6b770a772 (patch) | |
| tree | 4587fb455be710c0b8409009589d5d3452ceebd7 /Makefile | |
| parent | f08f8dbb3c480220f92923a7f3242fcbb644b65e (diff) | |
Make "build" the default make target rather than "clean" (#1152)
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -8,6 +8,8 @@ SBT_FLAGS ?= -Dsbt.log.noformat=true scala_jar ?= $(install_dir)/firrtl.jar scala_src := $(shell find src -type f \( -name "*.scala" -o -path "*/resources/*" \)) +build: build-scala + clean: $(MAKE) -C $(root_dir)/spec clean rm -f $(install_dir)/firrtl.jar @@ -17,8 +19,6 @@ clean: specification: $(MAKE) -C $(root_dir)/spec all -build: build-scala - regress: $(scala_jar) cd $(regress_dir) && $(install_dir)/firrtl -i rocket.fir -o rocket.v -X verilog |
