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 60 61
|
## Makefile.am -- process this file with automake to produce Makefile.in
##
## This file is part of Complexity.
## Complexity Copyright (c) 2011, 2014 by Bruce Korb - all rights reserved
##
## Complexity is free software: you can redistribute it and/or modify it
## under the terms of the GNU General Public License as published by the
## Free Software Foundation, either version 3 of the License, or
## (at your option) any later version.
##
## Complexity is distributed in the hope that it will be useful, but
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
## See the GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License along
## with this program. If not, see <http://www.gnu.org/licenses/>.
exe = complexity
man_MANS = $(exe).1
optdefs = $(top_srcdir)/src/opts.def
BUILT_SOURCES =
TXI_DEP =
MAN_DEP =
DEP_FILES =
DEPDIR =
CLEANFILES = *-stamp $(DEP_FILES) invoke-complexity.*
TEXI2DVI_FLAGS = --texinfo='@pagesizes 9.5in,7.0in'
info_TEXINFOS = $(exe).texi
EXAMPLE_FILES = example.texi example-texi.tpl version.texi set-flags.texi
BUILT_SOURCES += example.texi version.texi set-flags.texi
EXTRA_DIST = $(EXAMPLE_FILES) fdl.texi intro.texi compute.texi \
gendocs_template invoke-$(exe).texi example.texi mk-texi.sh
DISTCLEANFILES = $(BUILT_SOURCES) $(man_MANS)
$(man_MANS) : $(optdefs) $(DEPDIR)
top_srcdir="$(top_srcdir)" \
top_builddir="$(top_builddir)" \
autogen $(MAN_DEP) -Tagman-cmd $(optdefs)
$(top_builddir)/src/complexity :
example.texi : $(optdefs) $(DEPDIR)
export exe="$(exe)" ; \
export optdefs="$(optdefs)" ; \
export TXI_DEP="$(TXI_DEP)" ; \
export top_srcdir="$(abs_top_srcdir)" ; \
export top_builddir="$(abs_top_builddir)" ; \
export MAKE="$(MAKE)" ; \
$(SHELL) $(abs_srcdir)/mk-texi.sh $@
# "gnudocs" always builds IN THE SOURCE DIRECTORY
# Sometimes, write permission is turned off.
# If so, then
gnudocs : $(srcdir)/gendocs_template example.texi
export top_srcdir="$(abs_top_srcdir)" ; \
export top_builddir="$(abs_top_builddir)" ; \
$(SHELL) $(abs_srcdir)/mk-texi.sh $@
|