* bin/commit.hb
* config/detect.mk
* config/detfun.mk
* config/detplat.mk
* config/dir.mk
* config/dirsh.mk
* config/global.mk
* config/globsh.mk
* config/instsh.mk
* config/lang.hb
* config/lang2po.hb
* config/po2lang.hb
* config/postinst.hb
* contrib/hbexpat/tests/tohash.prg
* contrib/hbformat/utils/hbformat.ini
* contrib/hbmisc/hbedit.prg
* contrib/hbmxml/tests/testmxml.prg
* contrib/hbnetio/utils/hbnetio/_console.prg
* contrib/hbnetio/utils/hbnetio/_winsvc.prg
* contrib/hbnetio/utils/hbnetio/hbnetio.prg
* contrib/hbnetio/utils/hbnetio/netiomgm.hb
* contrib/hbwin/tests/ole.prg
* contrib/hbwin/tests/oletst2.js
* contrib/hbwin/tests/oletst2.vbs
* contrib/hbxpp/doc/en/binnumx.txt
* contrib/hbxpp/doc/en/dbcmdx.txt
* contrib/xhb/htmutil.prg
* contrib/xhb/tfile.prg
* contrib/xhb/tframe.prg
* contrib/xhb/thtm.prg
* ChangeLog.txt
* debian/copyright
* doc/class_tp.txt
* doc/hdr_tpl.txt
* doc/xhb-diff.txt
* LICENSE.txt
* package/harbour-wce.spec.in
* package/harbour-win.spec.in
* package/harbour.spec
* package/mpkg_rpm_wce.sh
* package/mpkg_rpm_win.sh
* package/mpkg_rpm.sh
* package/mpkg_src.sh
* package/mpkg_ver.sh
* src/rtl/achoice.prg
* src/rtl/getsys53.prg
* src/rtl/tgetlist.prg
* src/rtl/tlabel.prg
* src/rtl/tmenusys.prg
* tests/hbdoc.prg
* tests/langmsg.prg
* tests/rto_get.prg
* tests/rto_tb.prg
+ doc/en/ati.txt
+ doc/en/dirdrive.txt
+ doc/en/hashfunc.txt
+ doc/en/hbtoken.txt
+ doc/en/left.txt
+ doc/en/proc.txt
+ doc/en/strtran.txt
+ doc/en/transfrm.txt
+ doc/en/typefile.txt
* doc/en/*
* more partial sync with 3.4 fork
96 lines
2.0 KiB
Makefile
96 lines
2.0 KiB
Makefile
# ---------------------------------------------------------------
|
|
# Copyright 2009 Viktor Szakats (vszakats.net/harbour)
|
|
# See LICENSE.txt for licensing terms.
|
|
# ---------------------------------------------------------------
|
|
|
|
ifneq ($(findstring MINGW,$(_DETPLAT_STR)),)
|
|
HB_HOST_PLAT := win
|
|
else
|
|
ifneq ($(findstring MSys,$(_DETPLAT_STR)),)
|
|
HB_HOST_PLAT := win
|
|
else
|
|
ifneq ($(findstring Windows,$(_DETPLAT_STR)),)
|
|
HB_HOST_PLAT := win
|
|
else
|
|
ifneq ($(findstring CYGWIN,$(_DETPLAT_STR)),)
|
|
HB_HOST_PLAT := win
|
|
else
|
|
ifneq ($(findstring Darwin,$(_DETPLAT_STR)),)
|
|
HB_HOST_PLAT := darwin
|
|
else
|
|
ifneq ($(findstring darwin,$(_DETPLAT_STR)),)
|
|
HB_HOST_PLAT := darwin
|
|
else
|
|
ifneq ($(findstring Linux,$(_DETPLAT_STR)),)
|
|
HB_HOST_PLAT := linux
|
|
else
|
|
ifneq ($(findstring linux,$(_DETPLAT_STR)),)
|
|
HB_HOST_PLAT := linux
|
|
else
|
|
ifneq ($(findstring HP-UX,$(_DETPLAT_STR)),)
|
|
HB_HOST_PLAT := hpux
|
|
else
|
|
ifneq ($(findstring hp-ux,$(_DETPLAT_STR)),)
|
|
HB_HOST_PLAT := hpux
|
|
else
|
|
ifneq ($(findstring SunOS,$(_DETPLAT_STR)),)
|
|
HB_HOST_PLAT := sunos
|
|
else
|
|
ifneq ($(findstring sunos,$(_DETPLAT_STR)),)
|
|
HB_HOST_PLAT := sunos
|
|
else
|
|
ifneq ($(findstring BSD,$(_DETPLAT_STR)),)
|
|
HB_HOST_PLAT := bsd
|
|
else
|
|
ifneq ($(findstring bsd,$(_DETPLAT_STR)),)
|
|
HB_HOST_PLAT := bsd
|
|
else
|
|
ifneq ($(findstring DragonFly,$(_DETPLAT_STR)),)
|
|
HB_HOST_PLAT := bsd
|
|
else
|
|
ifneq ($(findstring OS/2,$(_DETPLAT_STR)),)
|
|
HB_HOST_PLAT := os2
|
|
else
|
|
ifneq ($(findstring MS-DOS,$(_DETPLAT_STR)),)
|
|
HB_HOST_PLAT := dos
|
|
else
|
|
ifneq ($(findstring msdos,$(_DETPLAT_STR)),)
|
|
HB_HOST_PLAT := dos
|
|
else
|
|
ifneq ($(findstring beos,$(_DETPLAT_STR)),)
|
|
HB_HOST_PLAT := beos
|
|
else
|
|
ifneq ($(findstring Haiku,$(_DETPLAT_STR)),)
|
|
HB_HOST_PLAT := beos
|
|
endif
|
|
ifneq ($(findstring QNX,$(_DETPLAT_STR)),)
|
|
HB_HOST_PLAT := qnx
|
|
else
|
|
ifneq ($(findstring Minix,$(_DETPLAT_STR)),)
|
|
HB_HOST_PLAT := minix
|
|
else
|
|
ifneq ($(findstring AIX,$(_DETPLAT_STR)),)
|
|
HB_HOST_PLAT := aix
|
|
endif
|
|
endif
|
|
endif
|
|
endif
|
|
endif
|
|
endif
|
|
endif
|
|
endif
|
|
endif
|
|
endif
|
|
endif
|
|
endif
|
|
endif
|
|
endif
|
|
endif
|
|
endif
|
|
endif
|
|
endif
|
|
endif
|
|
endif
|
|
endif
|
|
endif
|