* common.mak
* utils/hbmake/Makefile
* utils/hbmake/bld_b32.bat
* utils/hbmake/bld_vc.bat
* utils/hbmake/hbmake.prg
* utils/hbmake/hbmutils.prg
* utils/hbmake/tmake.prg
- utils/hbmake/ft_funcs.prg
- utils/hbmake/tmake.prg
! Applied patches sent by Bill Robertson.
ft_funcs.prg got replaced by standard file handling
functions and HB_FREADLINE(), EOL handling fixes,
typos and other fixes.
Many thanks Bill.
* Eliminated STATIC var in tmake.prg
* Merged tmake.prg into hbmake.prg. (this was the
easiest way to make the new s_aEOL variable available
to this module.)
; Please test.
* common.mak
* utils/hbdoc/Makefile
* utils/hbdoc/bld_b32.bat
* utils/hbdoc/bld_vc.bat
+ utils/hbdoc/hbdfrdln.c
+ Added HB_FREADLINE() to hbdoc, too. It's not
used, just a small help to allow using it here,
too, instead of ft_funcs.prg.
46 lines
482 B
Makefile
46 lines
482 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ifeq ($(HB_MAIN),)
|
|
HB_MAIN = std
|
|
endif
|
|
|
|
ROOT = ../../
|
|
|
|
PRG_SOURCES=\
|
|
hbdoc.prg \
|
|
genos2.prg \
|
|
gentrf.prg \
|
|
genng.prg \
|
|
genhtm.prg \
|
|
genchm.prg \
|
|
genrtf.prg \
|
|
genhpc.prg \
|
|
genasc.prg \
|
|
genpdf1.prg \
|
|
teeasc.prg \
|
|
html.prg \
|
|
ng.prg \
|
|
os2.prg \
|
|
rtf.prg \
|
|
troff.prg \
|
|
ft_funcs.prg \
|
|
|
|
C_SOURCES=\
|
|
hbdfrdln.c \
|
|
|
|
PRG_MAIN=hbdoc.prg
|
|
|
|
LIBS=\
|
|
hbdebug \
|
|
hbvm \
|
|
hbrtl \
|
|
hbnulrdd \
|
|
hbrtl \
|
|
hbvm \
|
|
hbmacro \
|
|
hbcommon \
|
|
|
|
include $(TOP)$(ROOT)config/bin.cf
|