forked from Mirrors/freeswitch
7adaab24f2
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@6297 d0543943-73ff-0310-b7d9-9358b9ac24b2
80 lines
2.5 KiB
Makefile
80 lines
2.5 KiB
Makefile
# Makefile.config is generated by 'configure' using Makefile.config.in
|
|
# as a template and information that 'configure' gathers from the build
|
|
# system and from user options.
|
|
|
|
# Makefile.config should someday replace most of the other files that
|
|
# 'configure' generates, thus simplifying development and customization.
|
|
# Makefile.config is intended to contain information specific to the
|
|
# particular build environment or user build choices.
|
|
|
|
# Furthermore, most of the logic in 'configure', and thus 'configure.in',
|
|
# should go into the make files to simplify the build. Makefile.config
|
|
# should just pass raw configure variables through to the make file.
|
|
|
|
# Tokens of the form @TOKEN@ in the template file get replaced by
|
|
# 'configure' with the values of variables of the same name within
|
|
# 'configure', because of a AC_SUBST(TOKEN) statement in the
|
|
# 'configure.in' from which 'configure' was built.
|
|
|
|
# Here are the options the user chose on 'configure':
|
|
|
|
ENABLE_ABYSS_SERVER = @ENABLE_ABYSS_SERVER@
|
|
ENABLE_ABYSS_THREADS = @ENABLE_ABYSS_THREADS@
|
|
ENABLE_CPLUSPLUS = @ENABLE_CPLUSPLUS@
|
|
ENABLE_CGI_SERVER = @ENABLE_CGI_SERVER@
|
|
ENABLE_LIBXML2_BACKEND = @ENABLE_LIBXML2_BACKEND@
|
|
ENABLE_EFENCE = @ENABLE_EFENCE@
|
|
|
|
MUST_BUILD_WININET_CLIENT = @MUST_BUILD_WININET_CLIENT@
|
|
MUST_BUILD_CURL_CLIENT = @MUST_BUILD_CURL_CLIENT@
|
|
MUST_BUILD_LIBWWW_CLIENT = @MUST_BUILD_LIBWWW_CLIENT@
|
|
|
|
LIBXML2_CFLAGS = @LIBXML2_CFLAGS@
|
|
LIBXML2_LIBS = @LIBXML2_LIBS@
|
|
|
|
MUST_BUILD_CLIENT = no
|
|
ifeq ($(MUST_BUILD_WININET_CLIENT),yes)
|
|
MUST_BUILD_CLIENT = yes
|
|
endif
|
|
ifeq ($(MUST_BUILD_CURL_CLIENT),yes)
|
|
MUST_BUILD_CLIENT = yes
|
|
endif
|
|
ifeq ($(MUST_BUILD_LIBWWW_CLIENT),yes)
|
|
MUST_BUILD_CLIENT = yes
|
|
endif
|
|
|
|
# Stuff 'configure' figured out about our build platform:
|
|
|
|
SHELL = @SHELL@
|
|
CC = @CC@
|
|
CXX = @CXX@
|
|
CCLD = $(CC)
|
|
CXXLD = $(CXX)
|
|
AR = ar
|
|
RANLIB = @RANLIB@
|
|
LN_S = @LN_S@
|
|
INSTALL = @INSTALL@
|
|
|
|
C_COMPILER_GNU = @C_COMPILER_GNU@
|
|
CXX_COMPILER_GNU = @CXX_COMPILER_GNU@
|
|
COMPILER_CFLAGS = @COMPILER_CFLAGS@
|
|
COMPILER_CXXFLAGS = @COMPILER_CXXFLAGS@
|
|
|
|
# Here are the commands 'make install' uses to install various kinds of files:
|
|
|
|
INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(AM_INSTALL_PROGRAM_FLAGS)
|
|
INSTALL_DATA = @INSTALL_DATA@
|
|
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
|
|
|
# Here are the locations at which 'make install' puts files:
|
|
|
|
# DESTDIR is designed to be overriden at make time in order to relocate
|
|
# the entire install into a subdirectory.
|
|
DESTDIR =
|
|
|
|
exec_prefix = @exec_prefix@
|
|
prefix = @prefix@
|
|
LIBINST_DIR = @libdir@
|
|
HEADERINST_DIR = @includedir@
|
|
PROGRAMINST_DIR = @bindir@
|