* external/Makefile
+ Added HB_EXTERNAL_ADDON envvar support.
* config/win/bcc.cf
* -d moved to optimization switches.
24 lines
229 B
Makefile
24 lines
229 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ROOT = ../
|
|
|
|
ifeq ($(HB_EXTERNALLIBS),)
|
|
|
|
# standalone contribs
|
|
DIRS=\
|
|
sqlite3 \
|
|
|
|
else
|
|
|
|
ifneq ($(HB_EXTERNALLIBS),no)
|
|
DIRS = $(HB_EXTERNALLIBS)
|
|
endif
|
|
|
|
endif
|
|
|
|
DIRS += $(HB_EXTERNAL_ADDONS)
|
|
|
|
include $(ROOT)config/dir.cf
|