* utils/hbmk2/Makefile
* utils/hbmk2/hbmk2.prg
+ Added build time configuration for GPM (on Linux) and
WATT (on MS-DOS) builds. This makes hbmk.hbc generation
(at 'install' phase) unnecessary, which means that now
'install' is not required on _any_ platforms and scenarios
to use hbmk2. Since hbmk2 is now used to build contribs,
this is now also a reqiurement.
; Please test, I didn't make any Linux, MS-DOS build tests
after this change.
* config/postinst.hbs
- Deleted hbmk.hbc creation. Now this logic is included in
hbmk2 at build-time on Linux and MS-DOS build which have
GPM lib and WATT lib detected respectively.
* contrib/hbct/numline.c
* HB_ISIZ variables renamed.
24 lines
330 B
Makefile
24 lines
330 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ROOT := ../../
|
|
|
|
include $(TOP)$(ROOT)config/global.mk
|
|
|
|
PRG_SOURCES := \
|
|
hbmk2.prg \
|
|
|
|
PRG_MAIN := hbmk2.prg
|
|
|
|
LIBS = hbcplr hbpp hbcommon $(HB_LIBS_MT_NORDD)
|
|
|
|
ifneq ($(HB_HAS_GPM),)
|
|
HB_PRGFLAGS += -DHB_HAS_GPM
|
|
endif
|
|
ifneq ($(HB_HAS_WATT),)
|
|
HB_PRGFLAGS += -DHB_HAS_WATT
|
|
endif
|
|
|
|
include $(TOP)$(ROOT)config/bin.mk
|