You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
749 B
30 lines
749 B
AC_INIT([isl-interface], [0], [isl-development@googlegroups.com])
|
|
AC_CONFIG_AUX_DIR([.])
|
|
AC_CONFIG_MACRO_DIR([../m4])
|
|
AM_INIT_AUTOMAKE([foreign])
|
|
m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
|
|
|
|
AC_PROG_CXX
|
|
AX_PROG_CXX_FOR_BUILD
|
|
|
|
# extract_interface needs to be run on the build system.
|
|
# Since this is the only target that is being built,
|
|
# simply use the build compiler throughout.
|
|
# This ensures that the clang configure checks are
|
|
# performed using the right compiler.
|
|
CXX="$CXX_FOR_BUILD"
|
|
CXXCPP="$CXXCPP_FOR_BUILD"
|
|
EXEEXT="$BUILD_EXEEXT"
|
|
OBJEXT="$BUILD_OBJEXT"
|
|
|
|
AC_DISABLE_SHARED
|
|
AC_PROG_LIBTOOL
|
|
|
|
AX_DETECT_CLANG
|
|
|
|
AC_SUBST([CONFIG_STATUS_DEPENDENCIES], [$LLVM_CONFIG])
|
|
AC_CONFIG_HEADERS(isl_config.h)
|
|
AC_CONFIG_FILES(Makefile)
|
|
|
|
AC_OUTPUT
|