mirror of
https://github.com/wfjm/w11.git
synced 2026-02-25 08:40:05 +00:00
- Goals for rlink v4
- 16 bit addresses (instead of 8 bit)
- more robust encoding, support for error recovery at transport level
- add features to reduce round trips
- improved attention handling
- new 'list abort' command
- For further details see README_Rlink_V4.txt
- use own C++ based tcl shell tclshcpp instead of tclsh
33 lines
749 B
Makefile
33 lines
749 B
Makefile
# $Id: Makefile 582 2014-08-14 21:37:51Z 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-07-06 64 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/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
|
|
#
|