* 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
77 lines
657 B
Makefile
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
|