1
0
mirror of https://github.com/wfjm/w11.git synced 2026-01-15 16:26:35 +00:00
wfjm.w11/tools/src/checkpath_cpp.mk
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

42 lines
790 B
Makefile

# $Id: checkpath_cpp.mk 602 2014-11-08 21:42:47Z mueller $
#
# Revision History:
# Date Rev Version Comment
# 2014-11-08 602 1.1 add default for TCLLIB
# 2013-03-01 493 1.0.1 fix logic
# 2013-02-01 479 1.0 Initial version
#
ifndef RETROBASE
$(error RETROBASE not defined)
endif
#
# check that BOOSTLIB/BOOSTINC are defined either both, or none
#
ifndef BOOSTINC
ifdef BOOSTLIB
$(error BOOSTLIB defined, but not BOOSTINC; either both, or none !!)
endif
endif
#
ifndef BOOSTLIB
ifdef BOOSTINC
$(error BOOSTINC defined, but not BOOSTLIB; either both, or none !!)
endif
endif
#
# now define, if needed
#
ifndef BOOSTINC
BOOSTINC = /usr/include
endif
#
ifndef BOOSTLIB
BOOSTLIB = /usr/lib
endif
#
# define TCLLIB, if needed
#
ifndef TCLLIB
TCLLIB = /usr/lib
endif