* source/rtl/gtdos/Makefile
* source/rtl/gtwin/Makefile
* source/rtl/gtos2/Makefile
* source/rtl/gtgui/Makefile
* source/rtl/gtwvt/Makefile
+ Added architecture protection.
Just a step to make them all self detecting.
* mpkg_win.nsi
* Updated links installed.
* examples/superlib/readme.txt
* examples/dbu/readme.txt
* examples/rl/readme.txt
! Fixed my typo in hbformat cmdline.
27 lines
307 B
Makefile
27 lines
307 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ROOT = ../../../
|
|
|
|
LIBNAME=gtgui
|
|
|
|
HB_WITH_GTGUI=no
|
|
ifeq ($(HB_ARCHITECTURE),win)
|
|
HB_WITH_GTGUI=yes
|
|
endif
|
|
ifeq ($(HB_ARCHITECTURE),wce)
|
|
HB_WITH_GTGUI=yes
|
|
endif
|
|
|
|
ifeq ($(HB_WITH_GTGUI),yes)
|
|
|
|
C_SOURCES=\
|
|
gtgui.c \
|
|
|
|
include $(TOP)$(ROOT)config/lib.cf
|
|
|
|
else
|
|
include $(TOP)$(ROOT)config/none.cf
|
|
endif
|