forked from KolibriOS/kolibrios
22 lines
483 B
Makefile
22 lines
483 B
Makefile
|
# Configuration Makefile fragment
|
||
|
|
||
|
# Build the libxml2 binding?
|
||
|
# yes | no
|
||
|
WITH_LIBXML_BINDING := no
|
||
|
WITH_EXPAT_BINDING := yes
|
||
|
|
||
|
# Build the hubbub binding?
|
||
|
# yes | no
|
||
|
WITH_HUBBUB_BINDING := yes
|
||
|
|
||
|
# ----------------------------------------------------------------------------
|
||
|
# BeOS-specific options
|
||
|
# ----------------------------------------------------------------------------
|
||
|
ifeq ($(TARGET),beos)
|
||
|
# temporary
|
||
|
WITH_LIBXML_BINDING := no
|
||
|
endif
|
||
|
|
||
|
-include Makefile.config.override
|
||
|
|