URL
https://opencores.org/ocsvn/minsoc/minsoc/trunk
Subversion Repositories minsoc
[/] [minsoc/] [branches/] [rc-1.0/] [syn/] [altera/] [Makefile] - Rev 109
Compare with Previous | Blame | View Log
MINSOC = ..MINSOC_DEFINES = ${MINSOC}/backendMINSOC_RTL = ${MINSOC}/rtl/verilogMINSOC_STARTUP_RTL = ${MINSOC_RTL}/minsoc_startupUART_RTL = ${MINSOC_RTL}/uart16550/rtl/verilogADV_DEBUG_ROOT = ${MINSOC_RTL}/adv_debug_sys/HardwareDEBUG_RTL = ${ADV_DEBUG_ROOT}/adv_dbg_if/rtl/verilogOR1200_RTL = ${MINSOC_RTL}/or1200/rtl/verilogETH_RTL = ${MINSOC_RTL}/ethmac/rtl/verilogBUILD_SUPPORT = $(MINSOC)/syn/buildSupportPROJECT_DIR = $(MINSOC)/prj/alteraQSF_FILE = $(BUILD_SUPPORT)/minsoc_tophelp:@echo " all: Synthesize and implement the SoC, then generate a bit stream"@echo ""@echo " bitgen: Generate a programming file for the target FPGA"@echo " map: Express the SoC netlist in the target hardware"@echo " fit: Place the target hardware, then route the wires"@echo " sta: Perfom a timming analysis"@echo " eda: Generate a netlist of the hardware"@echo " config: Load the bitstream into the device using ALTERA USB Blaster and JTAG configuration"@echo ""@echo " clean: Delete all superfluous files generated by Altera tools"@echo " distclean: Delete all generated files"all: bitgen eda stamap: $(BUILD_SUPPORT)/minsoc_top.map.summaryfit: $(BUILD_SUPPORT)/minsoc_top.fit.summarybitgen: minsoc_top.sofeda: $(BUILD_SUPPORT)/minsoc_top.eda.summarysta: $(BUILD_SUPPORT)/minsoc_top.sta.summary#minsoc_top.map.summary: ${MINSOC_RTL}/*.v $(UART_RTL)/*.v $(ADV_DEBUG_ROOT)/*.v $(DEBUG_RTL)/*.v $(OR1200_RTL)/*.v $(ETH_RTL)/*.v ${MINSOC_DEFINES}/minsoc_defines.v minsoc_top.qsf$(BUILD_SUPPORT)/minsoc_top.map.summary: ${MINSOC_DEFINES}/minsoc_defines.v $(BUILD_SUPPORT)/minsoc_top.qsfquartus_map $(QSF_FILE) --write_settings_files=off$(BUILD_SUPPORT)/minsoc_top.fit.summary: $(BUILD_SUPPORT)/minsoc_top.map.summaryquartus_fit $(QSF_FILE) --write_Settings_files=off --pack_register=minimize_areaminsoc_top.sof: $(BUILD_SUPPORT)/minsoc_top.fit.summaryquartus_asm $(QSF_FILE)mv $(BUILD_SUPPORT)/*.sof .$(BUILD_SUPPORT)/minsoc_top.sta.summary: $(BUILD_SUPPORT)/minsoc_top.fit.summaryquartus_sta $(QSF_FILE)$(BUILD_SUPPORT)/minsoc_top.eda.summary: $(BUILD_SUPPORT)/minsoc_top.fit.summaryquartus_eda $(QSF_FILE) --write_settings_files=offconfig: minsoc_top.sofquartus_pgm -c USB-Blaster -m jtag -o "p;minsoc_top.sof"distclean:$(RM) *.sofmake cleanclean:$(RM) $(BUILD_SUPPORT)/*.rpt $(BUILD_SUPPORT)/*.summary $(BUILD_SUPPORT)/*.jdi $(BUILD_SUPPORT)/*.smsg $(BUILD_SUPPORT)/*.pin $(BUILD_SUPPORT)/*.qpf$(RM) -r $(BUILD_SUPPORT)/db $(BUILD_SUPPORT)/incremental_db
