Skip to content

Commit 2e17677

Browse files
author
Eric Osterweil
committed
Cleaned up after normalizing with the -08 draft.
1 parent b030ac5 commit 2e17677

35 files changed

+843
-1364
lines changed

Makefile.in

+28-15
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# Makefile.in generated by automake 1.14.1 from Makefile.am.
1+
# Makefile.in generated by automake 1.15 from Makefile.am.
22
# @configure_input@
33

4-
# Copyright (C) 1994-2013 Free Software Foundation, Inc.
4+
# Copyright (C) 1994-2014 Free Software Foundation, Inc.
55

66
# This Makefile.in is free software; the Free Software Foundation
77
# gives unlimited permission to copy and/or distribute it,
@@ -14,7 +14,17 @@
1414

1515
@SET_MAKE@
1616
VPATH = @srcdir@
17-
am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
17+
am__is_gnu_make = { \
18+
if test -z '$(MAKELEVEL)'; then \
19+
false; \
20+
elif test -n '$(MAKE_HOST)'; then \
21+
true; \
22+
elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
23+
true; \
24+
else \
25+
false; \
26+
fi; \
27+
}
1828
am__make_running_with_option = \
1929
case $${target_option-} in \
2030
?) ;; \
@@ -78,13 +88,12 @@ POST_UNINSTALL = :
7888
build_triplet = @build@
7989
host_triplet = @host@
8090
subdir = .
81-
DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
82-
$(top_srcdir)/configure $(am__configure_deps) TODO compile \
83-
config.guess config.sub depcomp install-sh missing ltmain.sh
8491
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
8592
am__aclocal_m4_deps = $(top_srcdir)/configure.ac
8693
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
8794
$(ACLOCAL_M4)
95+
DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \
96+
$(am__configure_deps) $(am__DIST_COMMON)
8897
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
8998
configure.lineno config.status.lineno
9099
mkinstalldirs = $(install_sh) -d
@@ -147,6 +156,8 @@ ETAGS = etags
147156
CTAGS = ctags
148157
CSCOPE = cscope
149158
DIST_SUBDIRS = $(SUBDIRS)
159+
am__DIST_COMMON = $(srcdir)/Makefile.in TODO compile config.guess \
160+
config.sub install-sh ltmain.sh missing
150161
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
151162
distdir = $(PACKAGE)-$(VERSION)
152163
top_distdir = $(distdir)
@@ -232,6 +243,7 @@ LIBTOOL = @LIBTOOL@
232243
LIPO = @LIPO@
233244
LN_S = @LN_S@
234245
LTLIBOBJS = @LTLIBOBJS@
246+
LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
235247
MAKEINFO = @MAKEINFO@
236248
MANIFEST_TOOL = @MANIFEST_TOOL@
237249
MKDIR_P = @MKDIR_P@
@@ -329,7 +341,6 @@ $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
329341
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
330342
$(am__cd) $(top_srcdir) && \
331343
$(AUTOMAKE) --foreign Makefile
332-
.PRECIOUS: Makefile
333344
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
334345
@case '$?' in \
335346
*config.status*) \
@@ -545,15 +556,15 @@ dist-xz: distdir
545556
$(am__post_remove_distdir)
546557

547558
dist-tarZ: distdir
548-
@echo WARNING: "Support for shar distribution archives is" \
549-
"deprecated." >&2
559+
@echo WARNING: "Support for distribution archives compressed with" \
560+
"legacy program 'compress' is deprecated." >&2
550561
@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
551562
tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
552563
$(am__post_remove_distdir)
553564

554565
dist-shar: distdir
555-
@echo WARNING: "Support for distribution archives compressed with" \
556-
"legacy program 'compress' is deprecated." >&2
566+
@echo WARNING: "Support for shar distribution archives is" \
567+
"deprecated." >&2
557568
@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
558569
shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
559570
$(am__post_remove_distdir)
@@ -589,17 +600,17 @@ distcheck: dist
589600
esac
590601
chmod -R a-w $(distdir)
591602
chmod u+w $(distdir)
592-
mkdir $(distdir)/_build $(distdir)/_inst
603+
mkdir $(distdir)/_build $(distdir)/_build/sub $(distdir)/_inst
593604
chmod a-w $(distdir)
594605
test -d $(distdir)/_build || exit 0; \
595606
dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
596607
&& dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
597608
&& am__cwd=`pwd` \
598-
&& $(am__cd) $(distdir)/_build \
599-
&& ../configure \
609+
&& $(am__cd) $(distdir)/_build/sub \
610+
&& ../../configure \
600611
$(AM_DISTCHECK_CONFIGURE_FLAGS) \
601612
$(DISTCHECK_CONFIGURE_FLAGS) \
602-
--srcdir=.. --prefix="$$dc_install_base" \
613+
--srcdir=../.. --prefix="$$dc_install_base" \
603614
&& $(MAKE) $(AM_MAKEFLAGS) \
604615
&& $(MAKE) $(AM_MAKEFLAGS) dvi \
605616
&& $(MAKE) $(AM_MAKEFLAGS) check \
@@ -775,6 +786,8 @@ uninstall-am:
775786
mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \
776787
ps ps-am tags tags-am uninstall uninstall-am
777788

789+
.PRECIOUS: Makefile
790+
778791

779792
# Tell versions [3.59,3.63) of GNU make to not export all variables.
780793
# Otherwise a system limit (for SysV at least) may be exceeded.

0 commit comments

Comments
 (0)