* Makefile
* config/*
* contrib/*
* doc/*
* extras/*
* include/*
* lib/*
* package/*
* src/*
* tests/*
* utils/*
* removed empty lines left after removed '$' + 'Id' + '$' identifiers
16 lines
258 B
Makefile
16 lines
258 B
Makefile
all : first
|
|
|
|
BIN_EXT := .exe
|
|
DYN_EXT := .dll
|
|
DYN_PREF := cyg
|
|
|
|
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 := -s
|
|
DYSTRIP := -s
|
|
endif
|