+ contrib/hbct/tests/bld_b32.bat
+ contrib/hbct/tests/bld_vc.bat
+ Added non-GNU make files for tests.
* contrib/hbct/tests/Makefile
+ Added ctwtest.prg to GNU makefile for hbct tests.
(so building of these was actually solved already)
* contrib/rddads/adsfunc.c
! Minor comment.
126 lines
1.5 KiB
Makefile
126 lines
1.5 KiB
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ifeq ($(HB_MAIN),)
|
|
HB_MAIN = std
|
|
endif
|
|
|
|
ROOT = ../../../
|
|
|
|
CONTRIBS=\
|
|
libct\
|
|
|
|
LIBS=\
|
|
hbdebug \
|
|
hbvm \
|
|
hbrtl \
|
|
hblang \
|
|
hbrdd \
|
|
hbrtl \
|
|
hbvm \
|
|
hbmacro \
|
|
hbpp \
|
|
hbcommon \
|
|
|
|
ifeq ($(PM),)
|
|
PM := $(pm)
|
|
endif
|
|
|
|
ifeq ($(PM),) # PM not defined = build all files
|
|
|
|
PRG_SOURCES=\
|
|
addascii.prg \
|
|
afteratn.prg \
|
|
asciisum.prg \
|
|
ascpos.prg \
|
|
atadjust.prg \
|
|
attoken.prg \
|
|
atnum.prg \
|
|
atrepl.prg \
|
|
beforatn.prg \
|
|
charadd.prg \
|
|
charand.prg \
|
|
chareven.prg \
|
|
charhist.prg \
|
|
charlist.prg \
|
|
charmirr.prg \
|
|
charmix.prg \
|
|
charnlst.prg \
|
|
charnot.prg \
|
|
charodd.prg \
|
|
charone.prg \
|
|
charonly.prg \
|
|
charor.prg \
|
|
charrem.prg \
|
|
charrepl.prg \
|
|
charrll.prg \
|
|
charrlr.prg \
|
|
charshl.prg \
|
|
charshr.prg \
|
|
charslst.prg \
|
|
charsort.prg \
|
|
charswap.prg \
|
|
charsub.prg \
|
|
charxor.prg \
|
|
csetatmu.prg \
|
|
csetarge.prg \
|
|
csetref.prg \
|
|
ctwtest.prg \
|
|
datetime.prg \
|
|
expomant.prg \
|
|
finan.prg \
|
|
math.prg \
|
|
num1.prg \
|
|
numtoken.prg \
|
|
rangerem.prg \
|
|
rangerepl.prg \
|
|
setatlik.prg \
|
|
strdiff.prg \
|
|
tab.prg \
|
|
token.prg \
|
|
token2.prg \
|
|
tokenlow.prg \
|
|
tokensep.prg \
|
|
tokenupp.prg \
|
|
trig.prg \
|
|
valpos.prg \
|
|
wordone.prg \
|
|
wordonly.prg \
|
|
wordrepl.prg \
|
|
wordrem.prg \
|
|
wordswap.prg \
|
|
|
|
|
|
PRG_HEADERS=\
|
|
|
|
|
|
BAD_PRG_SOURCES=\
|
|
|
|
|
|
C_SOURCES=\
|
|
|
|
|
|
C_HEADERS=\
|
|
|
|
|
|
BAD_C_SOURCES=\
|
|
|
|
|
|
include $(TOP)$(ROOT)config/test.cf
|
|
|
|
else #PM defined = build specified file
|
|
|
|
ifneq ($(findstring .prg,$(PM)),)
|
|
PRG_MAIN := $(PM)
|
|
else
|
|
ifneq ($(findstring .PRG,$(PM)),)
|
|
PRG_MAIN := $(PM)
|
|
else
|
|
PRG_MAIN := $(PM).prg
|
|
endif
|
|
endif
|
|
include $(TOP)$(ROOT)config/bin.cf
|
|
|
|
endif
|