Skip to content

Commit 5f92920

Browse files
committed
Update version and include example
1 parent a96462a commit 5f92920

File tree

6 files changed

+1388
-562
lines changed

6 files changed

+1388
-562
lines changed

Makefile.am

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ ACLOCAL_AMFLAGS = -I config/m4
22
SUBDIRS = src
33
MAINTAINERCLEANFILES = Makefile.in aclocal.m4 configure
44

5-
EXTRA_DIST = doc bin
5+
EXTRA_DIST = doc bin examples
66

77
docs:
88
cd doc/ja/;make latexpdfja; make html

Makefile.in

+33-21
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,18 +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) \
83-
$(srcdir)/config.h.in config/compile config/config.guess \
84-
config/config.sub config/depcomp config/install-sh \
85-
config/missing $(top_srcdir)/config/compile \
86-
$(top_srcdir)/config/config.guess \
87-
$(top_srcdir)/config/config.sub \
88-
$(top_srcdir)/config/install-sh $(top_srcdir)/config/missing
8991
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
9092
am__aclocal_m4_deps = $(top_srcdir)/configure.ac
9193
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
9294
$(ACLOCAL_M4)
95+
DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \
96+
$(am__configure_deps) $(am__DIST_COMMON)
9397
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
9498
configure.lineno config.status.lineno
9599
mkinstalldirs = $(install_sh) -d
@@ -153,6 +157,12 @@ ETAGS = etags
153157
CTAGS = ctags
154158
CSCOPE = cscope
155159
DIST_SUBDIRS = $(SUBDIRS)
160+
am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/config.h.in \
161+
$(top_srcdir)/config/compile $(top_srcdir)/config/config.guess \
162+
$(top_srcdir)/config/config.sub \
163+
$(top_srcdir)/config/install-sh $(top_srcdir)/config/missing \
164+
config/compile config/config.guess config/config.sub \
165+
config/depcomp config/install-sh config/missing
156166
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
157167
distdir = $(PACKAGE)-$(VERSION)
158168
top_distdir = $(distdir)
@@ -303,6 +313,7 @@ pdfdir = @pdfdir@
303313
prefix = @prefix@
304314
program_transform_name = @program_transform_name@
305315
psdir = @psdir@
316+
runstatedir = @runstatedir@
306317
sbindir = @sbindir@
307318
sharedstatedir = @sharedstatedir@
308319
srcdir = @srcdir@
@@ -314,7 +325,7 @@ top_srcdir = @top_srcdir@
314325
ACLOCAL_AMFLAGS = -I config/m4
315326
SUBDIRS = src
316327
MAINTAINERCLEANFILES = Makefile.in aclocal.m4 configure
317-
EXTRA_DIST = doc bin
328+
EXTRA_DIST = doc bin examples
318329
all: config.h
319330
$(MAKE) $(AM_MAKEFLAGS) all-recursive
320331

@@ -334,7 +345,6 @@ $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
334345
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
335346
$(am__cd) $(top_srcdir) && \
336347
$(AUTOMAKE) --foreign Makefile
337-
.PRECIOUS: Makefile
338348
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
339349
@case '$?' in \
340350
*config.status*) \
@@ -556,15 +566,15 @@ dist-xz: distdir
556566
$(am__post_remove_distdir)
557567

558568
dist-tarZ: distdir
559-
@echo WARNING: "Support for shar distribution archives is" \
560-
"deprecated." >&2
569+
@echo WARNING: "Support for distribution archives compressed with" \
570+
"legacy program 'compress' is deprecated." >&2
561571
@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
562572
tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
563573
$(am__post_remove_distdir)
564574

565575
dist-shar: distdir
566-
@echo WARNING: "Support for distribution archives compressed with" \
567-
"legacy program 'compress' is deprecated." >&2
576+
@echo WARNING: "Support for shar distribution archives is" \
577+
"deprecated." >&2
568578
@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
569579
shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
570580
$(am__post_remove_distdir)
@@ -600,17 +610,17 @@ distcheck: dist
600610
esac
601611
chmod -R a-w $(distdir)
602612
chmod u+w $(distdir)
603-
mkdir $(distdir)/_build $(distdir)/_inst
613+
mkdir $(distdir)/_build $(distdir)/_build/sub $(distdir)/_inst
604614
chmod a-w $(distdir)
605615
test -d $(distdir)/_build || exit 0; \
606616
dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
607617
&& dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
608618
&& am__cwd=`pwd` \
609-
&& $(am__cd) $(distdir)/_build \
610-
&& ../configure \
619+
&& $(am__cd) $(distdir)/_build/sub \
620+
&& ../../configure \
611621
$(AM_DISTCHECK_CONFIGURE_FLAGS) \
612622
$(DISTCHECK_CONFIGURE_FLAGS) \
613-
--srcdir=.. --prefix="$$dc_install_base" \
623+
--srcdir=../.. --prefix="$$dc_install_base" \
614624
&& $(MAKE) $(AM_MAKEFLAGS) \
615625
&& $(MAKE) $(AM_MAKEFLAGS) dvi \
616626
&& $(MAKE) $(AM_MAKEFLAGS) check \
@@ -786,6 +796,8 @@ uninstall-am:
786796
mostlyclean-generic pdf pdf-am ps ps-am tags tags-am uninstall \
787797
uninstall-am
788798

799+
.PRECIOUS: Makefile
800+
789801

790802
docs:
791803
cd doc/ja/;make latexpdfja; make html

0 commit comments

Comments
 (0)