mirror of
https://github.com/wfjm/w11.git
synced 2026-04-27 04:37:55 +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
31 lines
604 B
Makefile
31 lines
604 B
Makefile
# $Id: Makefile 602 2014-11-08 21:42:47Z mueller $
|
|
#
|
|
# Revision History:
|
|
# Date Rev Version Comment
|
|
# 2014-11-08 602 1.1 rename realclean->distclean
|
|
# 2011-10-14 416 1.0 Initial version
|
|
#
|
|
VBOM_all = $(wildcard *.vbom)
|
|
NGC_all = $(VBOM_all:.vbom=.ngc)
|
|
#
|
|
include $(RETROBASE)/rtl/make/xflow_default_s3board.mk
|
|
#
|
|
.PHONY : all clean distclean
|
|
#
|
|
all : tst_serloop
|
|
#
|
|
clean : ise_clean
|
|
#
|
|
distclean :
|
|
rm -f tst_serloop
|
|
#
|
|
#----
|
|
#
|
|
include $(RETROBASE)/tools/make/dontincdep.mk
|
|
include $(RETROBASE)/rtl/make/generic_xflow.mk
|
|
#
|
|
ifndef DONTINCDEP
|
|
include $(VBOM_all:.vbom=.dep_xst)
|
|
endif
|
|
#
|