File: configure.in

package info (click to toggle)
tess 0.3.0-13
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 484 kB
  • sloc: sh: 2,841; makefile: 179
file content (44 lines) | stat: -rw-r--r-- 899 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
dnl -*- sh -*-

AC_INIT(tess,dummy)
AC_CONFIG_SRCDIR([tess.sl])
MN_PACKAGE_INIT

AC_PREFIX_DEFAULT("/usr/local"
      if test -f "/usr/include/slang.h"; then
      ac_default_prefix="/usr"
      fi
)

AC_CONFIG_AUX_DIR(admin)
AC_CANONICAL_HOST
AC_PROG_INSTALL
AC_PROG_MAKE_SET

MN_CHECK_SLSH(2.0.0)

AC_CONFIG_FILES([
Makefile:admin/Makefile.in
])

if test -f doc/tm/tess.tm.in  ; then
   AC_CONFIG_FILES([doc/tm/tess.tm])
fi

if test -f www/sidebar.tm.in  ; then
   (cd www ; if ! test -r doc ; then ln -s ../doc ; fi)
   AC_CONFIG_FILES([www/sidebar.tm])
fi

AC_OUTPUT

echo ""
echo "Tess:  The (Te)st (S)ystem for (S)-Lang"
echo "Version $TESS_VERSION_STRING"
echo ""
echo "S-Lang version:  $SLANG_VERSION_STRING"
echo "S-Lang scripts will be installed to $SL_FILES_INSTALL_DIR"
echo ""
echo "If any of these quantities are incorrect, edit the top-level Makefile"
echo "or re-configure."
echo ""