mirror of
https://github.com/stnolting/neorv32.git
synced 2025-04-24 06:07:52 -04:00
[sw/common] remove sim build on clean_all
This commit is contained in:
parent
02d3e72328
commit
3cfbf0b0ca
1 changed files with 7 additions and 6 deletions
|
@ -219,12 +219,6 @@ $(APP_VHD): $(BIN_MAIN) $(IMAGE_GEN)
|
|||
@echo "Generating $(APP_VHD)"
|
||||
@$(IMAGE_GEN) -app_vhd $< $@ $(shell basename $(CURDIR))
|
||||
|
||||
# Install VHDL memory initialization file
|
||||
install-$(APP_VHD): $(APP_VHD)
|
||||
@set -e
|
||||
@echo "Installing application image to $(NEORV32_RTL_PATH)/core/$(APP_VHD)"
|
||||
@cp $(APP_VHD) $(NEORV32_RTL_PATH)/core/.
|
||||
|
||||
# Generate NEORV32 RAW executable image in plain hex format
|
||||
$(APP_HEX): $(BIN_MAIN) $(IMAGE_GEN)
|
||||
@set -e
|
||||
|
@ -306,6 +300,12 @@ sim: $(APP_VHD) install
|
|||
@echo "Simulating processor using default testbench..."
|
||||
@sh $(NEORV32_SIM_PATH)/ghdl.sh $(GHDL_RUN_FLAGS)
|
||||
|
||||
# Install VHDL memory initialization file
|
||||
install-$(APP_VHD): $(APP_VHD)
|
||||
@set -e
|
||||
@echo "Installing application image to $(NEORV32_RTL_PATH)/core/$(APP_VHD)"
|
||||
@cp $(APP_VHD) $(NEORV32_RTL_PATH)/core/.
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
# Regenerate HDL file lists
|
||||
# -----------------------------------------------------------------------------
|
||||
|
@ -337,6 +337,7 @@ clean:
|
|||
|
||||
clean_all: clean
|
||||
@rm -f $(IMAGE_GEN)
|
||||
@rm -rf $(NEORV32_SIM_PATH)/build
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
# Show configuration
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue