- source/rtl/gtalleg
+ contrib/gtalleg
* TODO
* doc/dirstruc.txt
* include/hbgtcore.h
* contrib/gtalleg/Makefile
* contrib/gtalleg/make_b32.bat
* contrib/gtalleg/make_vc.bat
* contrib/gtalleg/make_gcc.sh
* contrib/make_b32_all.bat
* contrib/make_vc_all.bat
* contrib/make_gcc_all.sh
* contrib/Makefile
* config/hpux/gcc.cf
* config/hpux/global.cf
* config/darwin/gcc.cf
* config/darwin/global.cf
* config/dos/global.cf
* config/linux/gcc.cf
* config/linux/global.cf
* config/sunos/gcc.cf
* config/sunos/global.cf
* config/bsd/gcc.cf
* config/bsd/global.cf
* config/w32/global.cf
* harbour-ce-spec
* harbour-w32-spec
* harbour.spec
* GTALLEG moved to contrib to make it possible to build
using the non-GNU make system, also to align the build
process with other 3rd party package dependent parts
of Harbour.
HB_INC_ALLEGRO or HB_DIR_ALLEGRO may be used to point
to Allegro package directory. This is generally necessary
on non-*nix systems.
; NOTE: Review and test build processes and modified files,
and unmodified, but potentially related files:
bin/hb-func.sh
make_gnu.sh
make_rpm.sh
make_rpmce.sh
make_rpmw32.sh
61 lines
600 B
Makefile
61 lines
600 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ROOT = ../
|
|
|
|
ifeq ($(HB_CONTRIBLIBS),)
|
|
|
|
# standalone contribs
|
|
DIRS=\
|
|
gtwvg \
|
|
hbbmcdx \
|
|
hbbtree \
|
|
hbclipsm \
|
|
hbct \
|
|
hbgf \
|
|
hbgt \
|
|
hbmisc \
|
|
hbmzip \
|
|
hbnf \
|
|
hbodbc \
|
|
hbole \
|
|
hbsqlit3 \
|
|
hbtip \
|
|
hbtpathy \
|
|
hbvpdf \
|
|
hbw32 \
|
|
rddado \
|
|
xhb \
|
|
|
|
# hbsqlit2 \
|
|
# hbw32ddr \
|
|
# hbwhat32 \
|
|
# hbziparch \
|
|
|
|
# contribs with external dependencies
|
|
DIRS +=\
|
|
gtalleg \
|
|
hbapollo \
|
|
hbcurl \
|
|
hbfbird \
|
|
hbfimage \
|
|
hbgd \
|
|
hbhpdf \
|
|
hbmsql \
|
|
hbmysql \
|
|
hbpgsql \
|
|
rddads \
|
|
|
|
else
|
|
|
|
DIRS = $(HB_CONTRIBLIBS)
|
|
|
|
endif
|
|
|
|
DIRS += $(HB_CONTRIB_ADDONS)
|
|
|
|
# DIRS += examples
|
|
|
|
include $(ROOT)config/dir.cf
|