mirror of
https://github.com/wfjm/w11.git
synced 2026-02-08 09:32:04 +00:00
- arty board support - viv_tools_build: export log and rpt generated in OOC synthesis runs - s7_cmt_sfs_2: dual-channel frequency synthesis MMCM/PLL wrapper - s7_cmt_1ce1ce2c: clocking block for 7-Series: 2 clk+CEs + 2 clk - cdc_signal_s1_as: clock domain crossing for a signal, 2 stage, asyn input - migui_core_gsim: highly simplified MIG UI simulation model
38 lines
730 B
Makefile
38 lines
730 B
Makefile
# $Id: Makefile 1067 2018-11-11 08:30:29Z mueller $
|
|
#
|
|
# Revision History:
|
|
# Date Rev Version Comment
|
|
# 2018-11-10 1067 1.0 Initial version
|
|
#
|
|
VBOM_all = $(wildcard *.vbom)
|
|
DCP_all = $(VBOM_all:.vbom=_syn.dcp)
|
|
#
|
|
# reference board for test synthesis is Artix-7 based Nexys4
|
|
ifndef XTW_BOARD
|
|
XTW_BOARD=nexys4
|
|
endif
|
|
include ${RETROBASE}/rtl/make_viv/viv_default_$(XTW_BOARD).mk
|
|
#
|
|
.PHONY : catch all clean
|
|
#
|
|
catch :
|
|
@echo "no default target defined, use"
|
|
@echo " make all"
|
|
@echo " make <module>_syn.dcp"
|
|
@exit 1
|
|
#
|
|
all : $(DCP_all)
|
|
#
|
|
clean : viv_clean
|
|
#
|
|
#-----
|
|
#
|
|
include ${RETROBASE}/rtl/make_viv/generic_vivado.mk
|
|
#
|
|
VBOM_all = $(wildcard *.vbom)
|
|
#
|
|
ifndef DONTINCDEP
|
|
include $(VBOM_all:.vbom=.dep_vsyn)
|
|
endif
|
|
#
|