Files
harbour-core/harbour/source/rtl/gtgui/Makefile
Viktor Szakats 4b17624bbf 2009-06-11 21:01 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* 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.
2009-06-11 19:05:34 +00:00

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