source: branches/r9/gui/configure.in @ 5106

Last change on this file since 5106 was 4914, checked in by gah, 9 years ago
File size: 670 bytes
Line 
1
2AC_INIT([RapptureGUI],[1.4],[rappture@nanohub.org])
3AC_CONFIG_AUX_DIR(cf)
4
5#------------------------------------------------------------------------
6# Handle the --prefix=... option
7#------------------------------------------------------------------------
8
9if test "${prefix}" = "NONE"; then
10    prefix=/usr/local
11fi
12if test "${exec_prefix}" = "NONE"; then
13    exec_prefix=$prefix
14fi
15
16if test -r ${exec_prefix}/lib/rapptureConfig.sh; then
17  . ${exec_prefix}/lib/rapptureConfig.sh
18  PACKAGE_VERSION=$RAPPTURE_VERSION
19fi   
20
21AC_PROG_INSTALL
22AC_PROG_LN_S
23AC_PROG_MKDIR_P
24AC_PROG_MAKE_SET
25
26AC_CONFIG_FILES([
27    Makefile
28    pkgIndex.tcl
29    scripts/Makefile
30])
31AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.