Files
harbour-core/harbour/contrib/Makefile
Przemyslaw Czerpak 64c3fde630 2007-06-01 19:40 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/harbour.spec
  * harbour/make_rpm.sh
  * harbour/contrib/Makefile
    * cleanup and added HB_CONTRIBLIBS to set additional contrib libraries
    + added -with xhb  switch to build Harbour RPMs with HB_COMPAT_XHB
      macro

  * harbour/contrib/mysql/Makefile
    + added -I/usr/include/mysql -I/usr/local/include/mysql to C compiler
      flags
  * harbour/contrib/mysql/tmysql.prg
  * harbour/contrib/mysql/tsqlbrw.prg
    * cleaned -w2 warnings - in few places I added HB_SYMBOL_UNUSED()
      which should be replace sin the future by valid code
2007-06-01 17:39:46 +00:00

77 lines
657 B
Makefile

#
# $Id$
#
ROOT = ../
DIRS=\
btree \
htmllib \
libct \
libgt \
libmisc \
libnf \
samples \
$(HB_CONTRIBLIBS)
ifneq ($(HB_ARCHITECTURE),dos)
DIRS +=\
bmdbfcdx \
endif
ifeq ($(HB_ARCHITECTURE),w32)
DIRS +=\
rdd_ads \
ifeq ($(HB_COMPILER),msvc)
DIRS +=\
odbc \
else
ifeq ($(HB_COMPILER),rsxnt)
else
DIRS +=\
ole2 \
odbc \
adordd \
endif
endif
else
ifeq ($(HB_COMPILER),icc)
DIRS +=\
hgf/os2pm \
else
ifeq ($(HB_ARCHITECTURE),os2)
DIRS +=\
hgf/os2pm \
else
ifeq ($(HB_ARCHITECTURE),linux)
DIRS +=\
rdd_ads \
odbc \
endif
endif
endif
endif
#ifneq ($(HB_ARCHITECTURE),dos)
#DIRS += tip
#endif
include $(ROOT)config/dir.cf