* Makefile
- samples
+ contrib/examples
* contrib/Makefile
* contrib/examples/Makefile
* contrib/examples/guestbk/inifiles.prg
* contrib/examples/guestbk/testcgi.prg
* contrib/examples/guestbk/bld_b32.bat
* contrib/examples/guestbk/Makefile
* contrib/examples/pe/pe.prg
* contrib/examples/pe/Makefile
* contrib/examples/misc/Makefile
* contrib/examples/hscript/bld_b32.bat
* contrib/examples/hscript/Makefile
* contrib/examples/Makefile
* Moved /samples to /contrib/examples
53 lines
603 B
Makefile
53 lines
603 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ROOT = ../../../
|
|
|
|
LIBS=\
|
|
debug \
|
|
vm \
|
|
rtl \
|
|
lang \
|
|
rdd \
|
|
rtl \
|
|
vm \
|
|
macro \
|
|
pp \
|
|
dbfntx \
|
|
dbfcdx \
|
|
dbffpt \
|
|
hbsix \
|
|
common \
|
|
|
|
ifeq ($(PM),)
|
|
PM := $(pm)
|
|
endif
|
|
ifeq ($(PM),) # PM not defined = build all files
|
|
PRG_SOURCES=\
|
|
guess.prg \
|
|
mankala.prg \
|
|
|
|
PRG_HEADERS=\
|
|
|
|
C_SOURCES=\
|
|
|
|
C_HEADERS=\
|
|
|
|
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
|