aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Waterman2019-08-13 07:52:44 -0700
committerAdam Izraelevitz2019-08-13 07:52:44 -0700
commit0f6b9615213a2a9770974ff71b3da3f6b770a772 (patch)
tree4587fb455be710c0b8409009589d5d3452ceebd7
parentf08f8dbb3c480220f92923a7f3242fcbb644b65e (diff)
Make "build" the default make target rather than "clean" (#1152)
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 36e87949..178acf91 100644
--- a/Makefile
+++ b/Makefile
@@ -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