-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfigure.ac
51 lines (38 loc) · 1.13 KB
/
configure.ac
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
45
46
47
48
49
50
51
dnl Process this file with autoconf to produce a configure script.
AC_PREREQ([2.67])
AC_INIT([sjconf],[2.0.2])
AM_INIT_AUTOMAKE([-Wall 1.11 foreign])
AM_PATH_PYTHON([3])
AC_PATH_PROG(TXT2TAGS, txt2tags)
sjconflocalstatedir=$localstatedir/lib/sjconf
AC_SUBST([sjconflocalstatedir])
sjconfpluginslocalstatedir=$sjconflocalstatedir/plugins
AC_SUBST([sjconfpluginslocalstatedir])
sjconfconfdir=$sysconfdir/sjconf
AC_SUBST([sjconfconfdir])
sjconfbaseconfdir=$sjconfconfdir/base
AC_SUBST([sjconfbaseconfdir])
sjconfprofilesconfdir=$sjconfconfdir/profiles
AC_SUBST([sjconfprofilesconfdir])
sjconftemplatesconfdir=$sjconfconfdir/templates
AC_SUBST([sjconftemplatesconfdir])
sjconfpartspythondir=$pythondir/sjconfparts
AC_SUBST([sjconfpartspythondir])
aclocaldir=\$\(datadir\)/aclocal
AC_SUBST([aclocaldir])
autotoolspkgdatadir=\$\(pkgdatadir\)/autotools
AC_SUBST([autotoolspkgdatadir])
AC_CONFIG_FILES([
Makefile
doc/Makefile
conf/Makefile
conf/base/Makefile
conf/profiles/Makefile
conf/templates/Makefile
conf/bash_completion/Makefile
sjconfparts/Makefile
autotools/Makefile
sjconf
tests/Makefile
])
AC_OUTPUT