-
Notifications
You must be signed in to change notification settings - Fork 3
/
configure.ac
60 lines (47 loc) · 2.37 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
52
53
54
55
56
57
58
59
#=========================================================================
# Toplevel configure.ac for the Automatic LaTeX Build System
#=========================================================================
# Please read the documentation in 'albs-uguide.txt' for more details on
# how the Automatic LaTeX Build System works. For most projects, a
# writer will only need to change the project metadata listed right
# below.
#-------------------------------------------------------------------------
# Project metadata
#-------------------------------------------------------------------------
m4_define( proj_name, [Automatic LaTeX Build System])
m4_define( proj_maintainer, [Christopher Batten])
m4_define( proj_abbreviation, [paper-albs])
#-------------------------------------------------------------------------
# Project version information
#-------------------------------------------------------------------------
# Version information is meant to be managed through a version control
# system's tags and revision numbers. In a working copy the version will
# not be defined here (you should just use the version control system's
# mechanisms). When we make a distribution then we can set the version
# here as formed by the scripts/vcs-version.sh script so that the
# distribution knows what version it came from. If you are not using
# version control then it is fine to set this directly.
m4_define( proj_version, [?])
#-------------------------------------------------------------------------
# Setup
#-------------------------------------------------------------------------
AC_INIT(proj_name,proj_version,proj_maintainer,proj_abbreviation)
AC_CONFIG_SRCDIR([src/]AC_PACKAGE_TARNAME[.tex])
AC_CONFIG_AUX_DIR([scripts])
AC_CANONICAL_BUILD
#-------------------------------------------------------------------------
# ALBS specific program checks
#-------------------------------------------------------------------------
ALBS_PROG_INSTALL
ALBS_PROG_PDFLATEX
ALBS_PROG_BIBTEX
ALBS_PROG_RUBY
#-------------------------------------------------------------------------
# ALBS build system module list
#-------------------------------------------------------------------------
ALBS_MODULES([svg,py])
#-------------------------------------------------------------------------
# Output
#-------------------------------------------------------------------------
AC_CONFIG_FILES([Makefile])
AC_OUTPUT