* utils/hbmk2/hbmk2.prg
* contrib/hbqt/qtgui/hbqtgui.hbc
* contrib/hbqt/qtwebkit/hbqtwebkit.hbc
* contrib/hbqt/qtcore/hbqtcore.hbc
* contrib/hbqt/qtnetwork/hbqtnetwork.hbc
* contrib/hbqt/qtdesigner/hbqtdesigner.hbm
* config/symbian/libs.mk
* config/symbian/gcc.mk
* config/symbian/global.mk
+ Some more Symbian support:
- file extensions
- qt lib names
- disabling qtdesigner
- workaround for gcc crash
; Pls note Harbour regards Symbian as Unix OS, while it's not.
Later this can be cleaned.
18 lines
259 B
Makefile
18 lines
259 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
all : first
|
|
|
|
BIN_EXT := .exe
|
|
DYN_EXT := .dll
|
|
DYN_PREF :=
|
|
|
|
ifneq ($(filter $(HB_BUILD_STRIP),all lib),)
|
|
ARSTRIP = && $(HB_CCPREFIX)strip -S $(LIB_DIR)/$@
|
|
endif
|
|
ifneq ($(filter $(HB_BUILD_STRIP),all bin),)
|
|
LDSTRIP := -s
|
|
DYSTRIP := -s
|
|
endif
|