mirror of
https://github.com/wfjm/w11.git
synced 2026-01-25 04:05:39 +00:00
- xsim support complete (but many issues to be resolved yet) - Added configurable w11a cache - Removed some never documented and now strategically obsolete designs
34 lines
783 B
Makefile
34 lines
783 B
Makefile
# -*- makefile-gmake -*-
|
|
# $Id: Makefile.ise 757 2016-04-02 11:19:06Z mueller $
|
|
#
|
|
# Revision History:
|
|
# Date Rev Version Comment
|
|
# 2014-07-27 545 1.2.1 make reference board configurable via XTW_BOARD
|
|
# 2011-08-13 405 1.2 use includes from rtl/make
|
|
# 2007-07-06 64 1.1 use Makefile.xflow
|
|
# 2007-06-03 45 1.0 Initial version
|
|
#
|
|
VBOM_all = $(wildcard *.vbom)
|
|
NGC_all = $(VBOM_all:.vbom=.ngc)
|
|
#
|
|
# reference board for test synthesis is Spartan-6 based Nexys3
|
|
ifndef XTW_BOARD
|
|
XTW_BOARD=nexys3
|
|
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
|
|
#
|