mirror of
https://github.com/wfjm/w11.git
synced 2026-02-22 23:47:49 +00:00
- Add sysmon/xadc support (for nexys4,basys3,arty designs) - Add Vivado simulator support (DPI not yet working)
26 lines
467 B
Makefile
26 lines
467 B
Makefile
# $Id: Makefile 733 2016-02-20 12:24:13Z mueller $
|
|
#
|
|
# Revision History:
|
|
# Date Rev Version Comment
|
|
# 2015-02-08 644 1.0 Initial version
|
|
#
|
|
VBOM_all = $(wildcard *.vbom)
|
|
BIT_all = $(VBOM_all:.vbom=.bit)
|
|
#
|
|
include ${RETROBASE}/rtl/make_viv/viv_default_basys3.mk
|
|
#
|
|
.PHONY : all clean
|
|
#
|
|
all : $(BIT_all)
|
|
#
|
|
clean : viv_clean
|
|
#
|
|
#----
|
|
#
|
|
include ${RETROBASE}/rtl/make_viv/generic_vivado.mk
|
|
#
|
|
ifndef DONTINCDEP
|
|
include $(VBOM_all:.vbom=.dep_vsyn)
|
|
endif
|
|
#
|