Skip to content

Commit

Permalink
Make "build" the default make target rather than "clean" (#1152)
Browse files Browse the repository at this point in the history
  • Loading branch information
aswaterman authored and azidar committed Aug 13, 2019
1 parent f08f8db commit 0f6b961
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

Expand Down

0 comments on commit 0f6b961

Please sign in to comment.