- 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
108 lines
2.4 KiB
CFEngine3
108 lines
2.4 KiB
CFEngine3
#
|
|
# $Id$
|
|
#
|
|
|
|
ifndef MK
|
|
|
|
all : first
|
|
|
|
HB_GT_LIST=\
|
|
gtcgi \
|
|
gtpca \
|
|
gtstd \
|
|
gtdos \
|
|
|
|
# gtcrs \
|
|
# gtsln \
|
|
|
|
# verify if GT drivers exist
|
|
#HB_GT_LIBS := $(foreach gt, $(HB_GT_LIST), $(if $(wildcard $(TOP)$(ROOT)source/rtl/$(gt)),$(gt),))
|
|
HB_GT_LIBS := $(HB_GT_LIST)
|
|
|
|
ifeq ($(HB_GT_LIB),)
|
|
HB_GT_LIB = gtdos
|
|
endif
|
|
|
|
ifeq ($(SHLVL),) # COMMAND.COM
|
|
|
|
# There is a conflict with the use of '\' and '/' characters
|
|
# The MAKE requires '/' in filenames (ARCH_DIR) however some compilers
|
|
# and some DOS commands require '\' (ARCH_DOS)
|
|
ARCH_DIR = $(subst \,/,$(HB_ARCH))
|
|
ARCH_DOS = $(subst /,\,$(HB_ARCH))
|
|
LIB_DIR_DOS = $(subst /,\,$(LIB_DIR))
|
|
LIB_PATH_DOS = $(subst /,\,$(LIB_PATH))
|
|
LIB_ARCH_DOS = $(subst /,\,$(LIB_ARCH))
|
|
DIRSEP = $(subst /,\,\)
|
|
|
|
MK := $(subst \,/,$(subst \~,~,$(MAKE)))
|
|
|
|
ifeq ($(COMSPEC),) #location of command.com
|
|
COMSPEC := command.com
|
|
else
|
|
ifeq ($(HB_COMPILER),bcc16)
|
|
#Use standard dos path, which is already set up.
|
|
else
|
|
ifeq ($(HB_COMPILER),rsx32)
|
|
#Use standard dos path, which is already set up.
|
|
else
|
|
ifneq ($(findstring watcom,$(HB_COMPILER)),)
|
|
#Use standard dos path, which is already set up.
|
|
else
|
|
ifeq ($(HB_COMPILER),djgpp)
|
|
#Use standard dos path, which is already set up.
|
|
else
|
|
ifeq ($(HB_COMPILER),emx)
|
|
#Use standard dos path, which is already set up.
|
|
else
|
|
COMSPEC := $(subst \,/,$(COMSPEC))
|
|
endif
|
|
endif
|
|
endif
|
|
endif
|
|
endif
|
|
endif
|
|
|
|
RM = del
|
|
RD = rmdir
|
|
CP = $(COMSPEC) /Ccopy
|
|
MV = move
|
|
MD = md
|
|
|
|
#this will be used only under DJGPP
|
|
RANLIB = ranlib
|
|
|
|
dirbase::
|
|
-@$(COMSPEC) /Cfor %d in ($(HB_ARCHITECTURE) $(ARCH_DOS)) do if not exist %d\nul $(MD) %d
|
|
$(if $(LIB_PATH_DOS),-@$(COMSPEC) /Cfor %d in ($(LIB_PATH_DOS) $(LIB_DIR_DOS)) do if not exist %d\nul $(MD) %d,)
|
|
|
|
clean::
|
|
-@$(COMSPEC) /Cfor %f in ($(ARCH_DOS)\*.* *.bak *.obj *.o *.tds) do $(RM) %f
|
|
-@$(COMSPEC) /Cfor %d in ($(ARCH_DOS) $(HB_ARCHITECTURE)) do if exist %d\nul $(RD) %d
|
|
$(if $(LIB_ARCH_DOS),-@$(COMSPEC) /Cif exist $(LIB_ARCH_DOS) $(RM) $(LIB_ARCH_DOS),)
|
|
|
|
else # bash
|
|
|
|
ARCH_DIR = $(HB_ARCH)
|
|
MK = $(MAKE)
|
|
|
|
RM = rm -f
|
|
RD = rm -f -r
|
|
CP = cp -f
|
|
MV = mv -f
|
|
MD = mkdir
|
|
MDP = mkdir -p
|
|
|
|
#this will be used only under MINGW
|
|
RANLIB = ranlib
|
|
|
|
dirbase::
|
|
@[ -d $(ARCH_DIR) ] || $(MDP) $(ARCH_DIR)
|
|
@[ -z $(LIB_DIR) ] || [ -d $(LIB_DIR) ] || $(MDP) $(LIB_DIR)
|
|
|
|
clean::
|
|
-$(RD) $(ARCH_DIR) $(LIB_ARCH)
|
|
|
|
endif
|
|
endif
|