Files
harbour-core/harbour/contrib/Makefile
Przemyslaw Czerpak 8abd2b93d8 2007-12-03 11:48 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/include/hbapigt.h
    * removed declaration for not existing function: hb_inkeyGet()

  * harbour/include/hbgtcore.h
  * harbour/source/rtl/hbgtcore.c
    * moved all static variables used by core GT code to HB_GT_BASE
      structure

  * harbour/source/rtl/inkey.c
    * cleanup

  * harbour/contrib/Makefile
    * moved HB_CONTRIBLIBS to the end build library list because they may
      need some other contrib libraries in dependences list
2007-12-03 10:48:50 +00:00

73 lines
664 B
Makefile

#
# $Id$
#
ROOT = ../
DIRS=\
hbbtree \
hbct \
hbgt \
hbmisc \
hbnf \
hbclipsm \
xhb \
# examples \
ifneq ($(HB_ARCHITECTURE),dos)
DIRS +=\
hbbmcdx \
endif
ifeq ($(HB_ARCHITECTURE),w32)
DIRS +=\
hbrddads \
hbgtwvg \
ifneq ($(HB_COMPILER),rsxnt)
DIRS +=\
hbw32 \
hbodbc \
hbrddado \
endif
else
ifeq ($(HB_COMPILER),icc)
DIRS +=\
hbgf/os2pm \
else
ifeq ($(HB_ARCHITECTURE),os2)
DIRS +=\
hbgf/os2pm \
else
ifeq ($(HB_ARCHITECTURE),linux)
DIRS +=\
hbrddads \
hbodbc \
endif
endif
endif
endif
ifneq ($(HB_ARCHITECTURE),dos)
DIRS += hbtip
endif
ifneq ($(HB_CONTRIBLIBS),)
DIRS += $(HB_CONTRIBLIBS)
endif
include $(ROOT)config/dir.cf