* /harbour/* -> /*
* moved whole Harbour source tree one level up to
avoid single 'harbour' top dir
20 lines
308 B
Makefile
20 lines
308 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
all : first
|
|
|
|
BIN_EXT :=
|
|
DYN_EXT := .dylib
|
|
DYN_PREF := lib
|
|
|
|
HB_GT_LIBS += gttrm
|
|
|
|
ifneq ($(filter $(HB_BUILD_STRIP),all lib),)
|
|
ARSTRIP = && strip -S $(LIB_DIR)/$@
|
|
endif
|
|
ifneq ($(filter $(HB_BUILD_STRIP),all bin),)
|
|
LDSTRIP = && strip $(BIN_DIR)/$@
|
|
DYSTRIP = && strip -S $(DYN_DIR)/$@
|
|
endif
|