File: configure.ac

package info (click to toggle)
reprof 1.0.1-9
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 43,116 kB
  • sloc: perl: 867; sh: 484; makefile: 58
file content (20 lines) | stat: -rw-r--r-- 496 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
AC_INIT([reprof], [1.0.1], [hoenigschmid@rostlab.org])
AM_INIT_AUTOMAKE([-Wall])
AC_CONFIG_FILES([
                 Makefile
                 Build.PL
		 examples/Makefile
                 lib/Makefile
                 lib/RG/Makefile
                 lib/RG/Reprof/Makefile
		 reprof.spec
                 scripts/Makefile
                 share/Makefile
                 ])
AC_SUBST(INSTALL_BASE_ARG)

if test "x$prefix" != "x/usr"; then
    INSTALL_BASE_ARG=install_base=$prefix
fi

AC_OUTPUT