1 AC_INIT([ppcg], [0.03], [isl-development@googlegroups.com])
3 AC_CONFIG_MACRO_DIR([m4])
4 AM_INIT_AUTOMAKE([foreign])
5 m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
13 if test $HAVE_OPENCL = yes; then
14 extra_tests="$extra_tests opencl_test.sh"
17 AX_SUBMODULE(isl,build|bundled|system,bundled)
18 AM_CONDITIONAL(BUNDLED_ISL, test $with_isl = bundled)
24 ISL_CFLAGS="-I\$(top_srcdir)/isl/include -I\$(top_builddir)/isl/include"
25 ISL_CFLAGS="$ISL_CFLAGS"
26 ppcg_configure_args="$ppcg_configure_args --with-isl-builddir=../isl"
27 ppcg_configure_args="$ppcg_configure_args --with-isl=build"
30 ISL_BUILDDIR=`echo @abs_builddir@ | $with_isl_builddir/config.status --file=-`
31 ppcg_configure_args="$ppcg_configure_args --with-isl-builddir=$ISL_BUILDDIR"
32 ISL_CFLAGS="-I$isl_srcdir/include -I$ISL_BUILDDIR/include"
33 ISL_CFLAGS="$ISL_CFLAGS"
34 ISL_LIBS="$with_isl_builddir/libisl.la"
37 PKG_CHECK_MODULES([ISL], [isl])
40 AX_SUBMODULE(pet,bundled|system,bundled)
41 AM_CONDITIONAL(BUNDLED_PET, test $with_pet = bundled)
47 PET_CFLAGS="$PET_CFLAGS -I\$(top_srcdir)/pet/include"
50 PKG_CHECK_MODULES([PET], [pet])
54 AC_SUBST(POLYBENCH_DIR)
56 AC_ARG_WITH([polybench],
57 [AS_HELP_STRING([--with-polybench=DIR], [PolyBench location])],
59 if test -f "$with_polybench/utilities/benchmark_list"; then
60 POLYBENCH_DIR=$with_polybench
61 extra_tests="$extra_tests polybench_test.sh"
66 echo '#define GIT_HEAD_ID "'$GIT_HEAD_ID'"' > gitversion.h
68 AC_CONFIG_FILES(Makefile)
69 AC_CONFIG_FILES([polybench_test.sh], [chmod +x polybench_test.sh])
70 AC_CONFIG_FILES([opencl_test.sh], [chmod +x opencl_test.sh])
71 if test $with_isl = bundled; then
72 AC_CONFIG_SUBDIRS(isl)
74 if test $with_pet = bundled; then
75 AC_CONFIG_SUBDIRS(pet)
77 AC_CONFIG_COMMANDS_POST([
78 dnl pass on arguments to subdir configures, but don't
79 dnl add them to config.status
80 ac_configure_args="$ac_configure_args $ppcg_configure_args"