* config/beos/gcc.mk
* config/beos/global.mk
* config/bsd/gcc.mk
* config/bsd/global.mk
* config/wce/mingwarm.mk
* config/hpux/gcc.mk
* config/hpux/global.mk
* config/dos/djgpp.mk
* config/win/mingw.mk
* config/win/cygwin.mk
* config/linux/icc.mk
* config/linux/sunpro.mk
* config/os2/gcc.mk
* config/sunos/gcc.mk
* config/sunos/global.mk
* config/sunos/sunpro.mk
+ Added HB_BUILD_STRIP support for rest of compilers.
; Please make tests.
* bin/postinst.sh
- Deleted strip from postinst phase.
17 lines
174 B
Makefile
17 lines
174 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
all : first
|
|
|
|
BIN_EXT :=
|
|
DYN_EXT := .sl
|
|
DYN_PREF := lib
|
|
|
|
HB_GT_LIBS += gttrm
|
|
|
|
ifneq ($(filter $(HB_BUILD_STRIP),all bin),)
|
|
LDSTRIP := -s
|
|
DYSTRIP := -s
|
|
endif
|