mirror of
https://github.com/wfjm/w11.git
synced 2026-04-28 21:08:35 +00:00
divisor or quotient were the largest negative integer (100000 or -32768). This is corrected now, for details see ECO-026-div.txt - some minor updates and fixes to support scripts - xtwi usage and XTWI_PATH setup explained in INSTALL.txt
31 lines
647 B
Makefile
31 lines
647 B
Makefile
# $Id: Makefile 575 2014-07-27 20:55:41Z 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
|
|
# 2010-05-23 293 1.0 Initial version (cloned..)
|
|
#
|
|
VBOM_all = $(wildcard *.vbom)
|
|
NGC_all = $(VBOM_all:.vbom=.ngc)
|
|
#
|
|
ifndef XTW_BOARD
|
|
XTW_BOARD=nexys2
|
|
endif
|
|
include $(RETROBASE)/rtl/make/xflow_default_$(XTW_BOARD).mk
|
|
#
|
|
.PHONY : all clean
|
|
#
|
|
all : $(NGC_all)
|
|
#
|
|
clean : ise_clean
|
|
#
|
|
#----
|
|
#
|
|
include $(RETROBASE)/rtl/make/generic_xflow.mk
|
|
#
|
|
ifndef DONTINCDEP
|
|
include $(VBOM_all:.vbom=.dep_xst)
|
|
endif
|
|
#
|