From b934c51315cef30c899c8ffe2a4d7c73acce5920 Mon Sep 17 00:00:00 2001 From: Colin Schmidt Date: Thu, 24 Oct 2019 10:26:45 -0700 Subject: [PATCH] Add phony firrtl target to just build firrtl file (#317) --- common.mk | 3 +++ 1 file changed, 3 insertions(+) diff --git a/common.mk b/common.mk index 317f2678..95d7c614 100644 --- a/common.mk +++ b/common.mk @@ -43,6 +43,9 @@ $(FIRRTL_FILE) $(ANNO_FILE): generator_temp generator_temp: $(SCALA_SOURCES) $(sim_files) mkdir -p $(build_dir) cd $(base_dir) && $(SBT) "project $(SBT_PROJECT)" "runMain $(GENERATOR_PACKAGE).Generator $(build_dir) $(MODEL_PACKAGE) $(MODEL) $(CONFIG_PACKAGE) $(CONFIG)" + +.PHONY: firrtl +firrtl: $(FIRRTL_FILE) ######################################################################################### # create verilog files rules and variables