Files
harbour-core/config/vxworks/global.mk
vszakats 9687850865 2013-03-16 02:10 UTC+0100 Viktor Szakats (harbour syenar.net)
* (all files)
    * stripped svn header
    * minor cleanups
    ; use following command to find out the history of files:
       git log
       git log --follow
       git blame
       git annotate
2013-03-16 02:11:42 +01:00

43 lines
738 B
Makefile

all : first
BIN_EXT := .vxe
DYN_EXT := .so
DYN_PREF := lib
ifeq ($(HB_CPU),x86)
ifeq ($(HB_CCSUFFIX),)
export HB_CCSUFFIX := pentium
endif
_HB_VXCPU := _VX_SIMPENTIUM
else
ifeq ($(HB_CPU),arm)
ifeq ($(HB_CCSUFFIX),)
export HB_CCSUFFIX := arm
endif
_HB_VXCPU := _VX_ARMARCH7
else
ifeq ($(HB_CPU),mips)
ifeq ($(HB_CCSUFFIX),)
export HB_CCSUFFIX := mips
endif
_HB_VXCPU :=
else
ifeq ($(HB_CPU),ppc)
ifeq ($(HB_CCSUFFIX),)
export HB_CCSUFFIX := ppc
endif
_HB_VXCPU :=
endif
endif
endif
endif
ifneq ($(filter $(HB_BUILD_STRIP),all lib),)
ARSTRIP = && strip$(HB_CCSUFFIX) $(LIB_DIR)/$@
endif
ifneq ($(filter $(HB_BUILD_STRIP),all bin),)
LDSTRIP := -s
DYSTRIP := -s
endif