Skip to content

Commit d58b850

Browse files
committed
Add .gitignore
1 parent dad7aef commit d58b850

21 files changed

+4951
-7251
lines changed

.gitignore

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
# http://www.gnu.org/software/automake
2+
3+
Makefile.in
4+
/ar-lib
5+
/mdate-sh
6+
/py-compile
7+
/test-driver
8+
/ylwrap
9+
10+
# http://www.gnu.org/software/autoconf
11+
12+
autom4te.cache
13+
/autoscan.log
14+
/autoscan-*.log
15+
/aclocal.m4
16+
/compile
17+
/config.guess
18+
/config.h.in
19+
/config.h.in~
20+
/config.log
21+
/config.status
22+
/config.sub
23+
/configure
24+
/configure.scan
25+
/depcomp
26+
/install-sh
27+
/missing
28+
/stamp-h1
29+
30+
# https://www.gnu.org/software/libtool/
31+
32+
/ltmain.sh
33+
34+
# http://www.gnu.org/software/texinfo
35+
36+
/texinfo.tex
37+
38+
# http://www.gnu.org/software/m4/
39+
40+
m4/libtool.m4
41+
m4/ltoptions.m4
42+
m4/ltsugar.m4
43+
m4/ltversion.m4
44+
m4/lt~obsolete.m4
45+
46+
# Generated Makefile
47+
# (meta build system like autotools,
48+
# can automatically generate from config.status script
49+
# (which is called by configure script))
50+
Makefile

Makefile.in

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

4-
# Copyright (C) 1994-2017 Free Software Foundation, Inc.
4+
# Copyright (C) 1994-2013 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,17 +14,7 @@
1414

1515
@SET_MAKE@
1616
VPATH = @srcdir@
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-
}
17+
am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
2818
am__make_running_with_option = \
2919
case $${target_option-} in \
3020
?) ;; \
@@ -88,6 +78,11 @@ POST_UNINSTALL = :
8878
build_triplet = @build@
8979
host_triplet = @host@
9080
subdir = .
81+
DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
82+
$(top_srcdir)/configure $(am__configure_deps) \
83+
$(srcdir)/config.h.in AUTHORS COPYING INSTALL NEWS README TODO \
84+
compile config.guess config.sub depcomp install-sh missing \
85+
ltmain.sh
9186
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
9287
am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
9388
$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
@@ -96,8 +91,6 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
9691
$(top_srcdir)/configure.ac
9792
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
9893
$(ACLOCAL_M4)
99-
DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \
100-
$(am__configure_deps) $(am__DIST_COMMON)
10194
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
10295
configure.lineno config.status.lineno
10396
mkinstalldirs = $(install_sh) -d
@@ -161,9 +154,6 @@ ETAGS = etags
161154
CTAGS = ctags
162155
CSCOPE = cscope
163156
DIST_SUBDIRS = $(SUBDIRS)
164-
am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/config.h.in AUTHORS \
165-
COPYING INSTALL NEWS README TODO compile config.guess \
166-
config.sub depcomp install-sh ltmain.sh missing
167157
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
168158
distdir = $(PACKAGE)-$(VERSION)
169159
top_distdir = $(distdir)
@@ -247,7 +237,6 @@ LIBTOOL_DEPS = @LIBTOOL_DEPS@
247237
LIPO = @LIPO@
248238
LN_S = @LN_S@
249239
LTLIBOBJS = @LTLIBOBJS@
250-
LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
251240
MAINT = @MAINT@
252241
MAKEINFO = @MAKEINFO@
253242
MANIFEST_TOOL = @MANIFEST_TOOL@
@@ -322,7 +311,6 @@ pdfdir = @pdfdir@
322311
prefix = @prefix@
323312
program_transform_name = @program_transform_name@
324313
psdir = @psdir@
325-
runstatedir = @runstatedir@
326314
sbindir = @sbindir@
327315
sharedstatedir = @sharedstatedir@
328316
srcdir = @srcdir@
@@ -353,6 +341,7 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__confi
353341
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
354342
$(am__cd) $(top_srcdir) && \
355343
$(AUTOMAKE) --foreign Makefile
344+
.PRECIOUS: Makefile
356345
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
357346
@case '$?' in \
358347
*config.status*) \
@@ -567,7 +556,7 @@ distdir: $(DISTFILES)
567556
! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
568557
|| chmod -R a+r "$(distdir)"
569558
dist-gzip: distdir
570-
tardir=$(distdir) && $(am__tar) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).tar.gz
559+
tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
571560
$(am__post_remove_distdir)
572561

573562
dist-bzip2: distdir
@@ -583,17 +572,17 @@ dist-xz: distdir
583572
$(am__post_remove_distdir)
584573

585574
dist-tarZ: distdir
586-
@echo WARNING: "Support for distribution archives compressed with" \
587-
"legacy program 'compress' is deprecated." >&2
575+
@echo WARNING: "Support for shar distribution archives is" \
576+
"deprecated." >&2
588577
@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
589578
tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
590579
$(am__post_remove_distdir)
591580

592581
dist-shar: distdir
593-
@echo WARNING: "Support for shar distribution archives is" \
594-
"deprecated." >&2
582+
@echo WARNING: "Support for distribution archives compressed with" \
583+
"legacy program 'compress' is deprecated." >&2
595584
@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
596-
shar $(distdir) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).shar.gz
585+
shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
597586
$(am__post_remove_distdir)
598587

599588
dist-zip: distdir
@@ -611,7 +600,7 @@ dist dist-all:
611600
distcheck: dist
612601
case '$(DIST_ARCHIVES)' in \
613602
*.tar.gz*) \
614-
eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).tar.gz | $(am__untar) ;;\
603+
GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
615604
*.tar.bz2*) \
616605
bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
617606
*.tar.lz*) \
@@ -621,23 +610,23 @@ distcheck: dist
621610
*.tar.Z*) \
622611
uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
623612
*.shar.gz*) \
624-
eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).shar.gz | unshar ;;\
613+
GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
625614
*.zip*) \
626615
unzip $(distdir).zip ;;\
627616
esac
628617
chmod -R a-w $(distdir)
629618
chmod u+w $(distdir)
630-
mkdir $(distdir)/_build $(distdir)/_build/sub $(distdir)/_inst
619+
mkdir $(distdir)/_build $(distdir)/_inst
631620
chmod a-w $(distdir)
632621
test -d $(distdir)/_build || exit 0; \
633622
dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
634623
&& dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
635624
&& am__cwd=`pwd` \
636-
&& $(am__cd) $(distdir)/_build/sub \
637-
&& ../../configure \
625+
&& $(am__cd) $(distdir)/_build \
626+
&& ../configure \
638627
$(AM_DISTCHECK_CONFIGURE_FLAGS) \
639628
$(DISTCHECK_CONFIGURE_FLAGS) \
640-
--srcdir=../.. --prefix="$$dc_install_base" \
629+
--srcdir=.. --prefix="$$dc_install_base" \
641630
&& $(MAKE) $(AM_MAKEFLAGS) \
642631
&& $(MAKE) $(AM_MAKEFLAGS) dvi \
643632
&& $(MAKE) $(AM_MAKEFLAGS) check \
@@ -814,8 +803,6 @@ uninstall-am:
814803
mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \
815804
uninstall-am
816805

817-
.PRECIOUS: Makefile
818-
819806

820807
libtool: $(LIBTOOL_DEPS)
821808
$(SHELL) ./config.status --recheck

0 commit comments

Comments
 (0)