* tests/hbpptest/Makefile
* tests/Makefile
* tests/multifnc/Makefile
* Makefile
* external/Makefile
* source/Makefile
* utils/hbformat/Makefile
* utils/hbmk2/Makefile
* utils/hbtest/Makefile
* utils/hbi18n/Makefile
* utils/Makefile
* utils/hbrun/Makefile
% Started replacing TABs with spaces in simple variable assigments.
TABs are only required when specifiying a rule command.
30 lines
331 B
Makefile
30 lines
331 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ROOT := ../
|
|
|
|
ifeq ($(HB_EXTERNALLIBS),)
|
|
|
|
# standalone contribs
|
|
DIRS := \
|
|
libhpdf \
|
|
libpng \
|
|
sqlite3 \
|
|
|
|
else
|
|
|
|
ifneq ($(HB_EXTERNALLIBS),no)
|
|
DIRS := $(HB_EXTERNALLIBS)
|
|
endif
|
|
|
|
endif
|
|
|
|
DIRS += $(HB_EXTERNAL_ADDONS)
|
|
|
|
ifneq ($(DIRS),)
|
|
include $(TOP)$(ROOT)config/dir.cf
|
|
else
|
|
include $(TOP)$(ROOT)config/none.cf
|
|
endif
|