Makefile (29c0dd83392a2cd734e3235eb87bdcb1659e6f5e) Makefile (9e38a5d42184d57acfb78cfda6aea0d065c7f3d7)
1TOP = TopMain
2FPGATOP = FPGANOOP
3BUILD_DIR = ./build
4TOP_V = $(BUILD_DIR)/$(TOP).v
5SCALA_FILE = $(shell find ./src/main/scala -name '*.scala')
6TEST_FILE = $(shell find ./src/test/scala -name '*.scala')
7MEM_GEN = ./scripts/vlsi_mem_gen
8

--- 120 unchanged lines hidden (view full) ---

129endif
130
131cache:
132 $(MAKE) emu IMAGE=Makefile
133
134clean:
135 rm -rf $(BUILD_DIR)
136
1TOP = TopMain
2FPGATOP = FPGANOOP
3BUILD_DIR = ./build
4TOP_V = $(BUILD_DIR)/$(TOP).v
5SCALA_FILE = $(shell find ./src/main/scala -name '*.scala')
6TEST_FILE = $(shell find ./src/test/scala -name '*.scala')
7MEM_GEN = ./scripts/vlsi_mem_gen
8

--- 120 unchanged lines hidden (view full) ---

129endif
130
131cache:
132 $(MAKE) emu IMAGE=Makefile
133
134clean:
135 rm -rf $(BUILD_DIR)
136
137.PHONY: verilog emu clean help $(REF_SO)
137init:
138 git submodule update --init
139 # do not use a recursive init to pull some not used submodules
140 cd ./rocket-chip/ && git submodule update --init api-config-chipsalliance hardfloat
141
142.PHONY: verilog emu clean help init $(REF_SO)