mirror of
https://github.com/wfjm/w11.git
synced 2026-02-14 12:14:43 +00:00
- Add sysmon/xadc support (for nexys4,basys3,arty designs) - Add Vivado simulator support (DPI not yet working)
32 lines
695 B
Makefile
32 lines
695 B
Makefile
# $Id: Makefile 733 2016-02-20 12:24:13Z mueller $
|
|
#
|
|
# Revision History:
|
|
# Date Rev Version Comment
|
|
# 2014-07-27 545 1.1.1 make reference board configurable via XTW_BOARD
|
|
# 2011-08-13 405 1.1 use includes from rtl/make
|
|
# 2007-12-09 100 1.0.1 drop ISE_p definition
|
|
# 2007-09-16 83 1.0 Initial version
|
|
#
|
|
VBOM_all = $(wildcard *.vbom)
|
|
NGC_all = $(VBOM_all:.vbom=.ngc)
|
|
#
|
|
ifndef XTW_BOARD
|
|
XTW_BOARD=s3board
|
|
endif
|
|
include ${RETROBASE}/rtl/make_ise/xflow_default_$(XTW_BOARD).mk
|
|
#
|
|
.PHONY : all clean
|
|
#
|
|
all : $(NGC_all)
|
|
#
|
|
clean : ise_clean
|
|
#
|
|
#----
|
|
#
|
|
include ${RETROBASE}/rtl/make_ise/generic_xflow.mk
|
|
#
|
|
ifndef DONTINCDEP
|
|
include $(VBOM_all:.vbom=.dep_xst)
|
|
endif
|
|
#
|