* harbour/contrib/Makefile
* respect HB_WITHOUT_ODBC and HB_WITHOUT_ADS envvars
* harbour/debian/control
* harbour/make_deb.sh
* removed libncurses5-dev, libslang2-dev, libgpmg1-dev, libx11-dev and
unixodbc-dev from dependences list.
+ added support for HB_COMMERCE=yes envvar
+ added automatic detection for curses, slang, gpm, x11 and odbc
devel packages
+ added test for ACESDK detection - it tests if ach.h file exists
in default user or system wide installation
The above modifications are not tested and I would like to ask
Debian/Ubuntu users to make necessary tests.
57 lines
700 B
Makefile
57 lines
700 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ROOT = ../
|
|
|
|
DIRS=\
|
|
hbbtree \
|
|
hbct \
|
|
hbgt \
|
|
hbmisc \
|
|
hbnf \
|
|
hbclipsm \
|
|
hbvpdf \
|
|
xhb \
|
|
hbmzip \
|
|
# examples \
|
|
|
|
|
|
ifneq ($(HB_ARCHITECTURE),dos)
|
|
DIRS += hbbmcdx
|
|
endif
|
|
|
|
ifeq ($(HB_ARCHITECTURE),w32)
|
|
DIRS += rddads gtwvg
|
|
ifneq ($(HB_COMPILER),rsxnt)
|
|
DIRS += hbw32 hbodbc rddado
|
|
endif
|
|
endif
|
|
|
|
ifeq ($(HB_COMPILER),icc)
|
|
DIRS += hbgf/os2pm
|
|
else
|
|
ifeq ($(HB_ARCHITECTURE),os2)
|
|
DIRS += hbgf/os2pm
|
|
endif
|
|
endif
|
|
|
|
ifeq ($(HB_ARCHITECTURE),linux)
|
|
ifneq ($(HB_WITHOUT_ODBC),yes)
|
|
DIRS += hbodbc
|
|
endif
|
|
ifneq ($(HB_WITHOUT_ADS),yes)
|
|
DIRS += rddads
|
|
endif
|
|
endif
|
|
|
|
ifneq ($(HB_ARCHITECTURE),dos)
|
|
DIRS += hbtip
|
|
endif
|
|
|
|
ifneq ($(HB_CONTRIBLIBS),)
|
|
DIRS += $(HB_CONTRIBLIBS)
|
|
endif
|
|
|
|
include $(ROOT)config/dir.cf
|