1
0
mirror of https://github.com/wfjm/w11.git synced 2026-04-27 04:37:55 +00:00
Files
wfjm.w11/rtl/sys_gen/tst_serloop/Makefile
Walter F.J. Mueller d87ac86f53 - migrate to rlink protocol version 4
- 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
2014-12-20 16:39:52 +00:00

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
#