Ignoring acprep products.
This commit is contained in:
parent
33d257f8f2
commit
98627de278
7 changed files with 90 additions and 29484 deletions
11
.gitignore
vendored
11
.gitignore
vendored
|
|
@ -7,7 +7,18 @@
|
|||
*.lo
|
||||
*.o
|
||||
.gdb_history
|
||||
/Makefile.in
|
||||
/acconf.h.in
|
||||
/aclocal.m4
|
||||
/config.guess
|
||||
/config.sub
|
||||
/configure
|
||||
/configure.in~
|
||||
/depcomp
|
||||
/elisp-comp
|
||||
/install-sh
|
||||
/ltmain.sh
|
||||
/missing
|
||||
Makefile
|
||||
UnitTests
|
||||
acconf.h
|
||||
|
|
|
|||
85
Makefile.am
85
Makefile.am
|
|
@ -273,16 +273,77 @@ doxygen-docs: $(top_builddir)/Doxyfile.gen
|
|||
|
||||
###############################################################################
|
||||
|
||||
check-syntax:
|
||||
g++ -I. -Itests $(CPPFLAGS) $(UnitTests_CXXFLAGS) \
|
||||
-o /dev/null -S $(CHK_SOURCES)
|
||||
clean-backupfiles:
|
||||
rm -fr *~ \
|
||||
.*~ \
|
||||
.\#*
|
||||
|
||||
all-clean: maintainer-clean
|
||||
rm -fr *~ .*~ .\#* *.html *.info *.pdf *.a *.so *.o *.lo *.la \
|
||||
*.elc *.aux *.cp *.fn *.ky *.log *.pg *.toc *.tp *.vr \
|
||||
.gdb_history gmon.out h out TAGS ledger valexpr .deps .libs \
|
||||
build INSTALL Makefile acconf.h acconf.h.in aclocal.m4 \
|
||||
autom4te config.guess config.sub configure depcomp install-sh \
|
||||
libtool ltconfig ltmain.sh missing stamp texinfo.tex \
|
||||
Makefile.in mkinstalldirs elisp-comp elc-stamp elc-temp \
|
||||
py-compile ylwrap compile
|
||||
clean-documentation:
|
||||
(cd docs; \
|
||||
rm -fr *.aux \
|
||||
*.cp \
|
||||
*.fn \
|
||||
*.info \
|
||||
*.ky \
|
||||
*.log \
|
||||
*.pdf \
|
||||
*.pg \
|
||||
*.toc \
|
||||
*.tp \
|
||||
*.vr)
|
||||
|
||||
clean-buildproducts:
|
||||
rm -fr *.Plo \
|
||||
*.Po \
|
||||
*.a \
|
||||
*.elc \
|
||||
*.gcno \
|
||||
*.gdca \
|
||||
*.la \
|
||||
*.lo \
|
||||
*.o \
|
||||
*.so \
|
||||
.deps \
|
||||
.libs \
|
||||
build
|
||||
|
||||
clean-debugdata:
|
||||
rm -fr .gdb_history \
|
||||
TAGS \
|
||||
gmon.out \
|
||||
h \
|
||||
out
|
||||
|
||||
clean-autoconf:
|
||||
(cd $(srcdir);
|
||||
rm -fr Makefile \
|
||||
Makefile.in \
|
||||
acconf.h \
|
||||
acconf.h.in \
|
||||
aclocal.m4 \
|
||||
autom4te \
|
||||
compile \
|
||||
config.guess \
|
||||
config.sub \
|
||||
configure \
|
||||
depcomp \
|
||||
elc-stamp \
|
||||
elc-temp \
|
||||
elisp-comp \
|
||||
install-sh \
|
||||
libtool \
|
||||
ltconfig \
|
||||
ltmain.sh \
|
||||
missing \
|
||||
mkinstalldirs \
|
||||
py-compile \
|
||||
stamp \
|
||||
texinfo.tex \
|
||||
ylwrap)
|
||||
|
||||
all-clean: maintainer-clean \
|
||||
clean-buildproducts \
|
||||
clean-backupfiles \
|
||||
clean-debugdata \
|
||||
clean-documentation \
|
||||
clean-autoconf
|
||||
|
|
|
|||
6
gdtoa/.gitignore
vendored
6
gdtoa/.gitignore
vendored
|
|
@ -1,3 +1,9 @@
|
|||
/config.guess
|
||||
/config.sub
|
||||
/depcomp
|
||||
/install-sh
|
||||
/ltmain.sh
|
||||
/missing
|
||||
Makefile
|
||||
acconf.h
|
||||
arith.h
|
||||
|
|
|
|||
1022
gdtoa/Makefile.in
1022
gdtoa/Makefile.in
File diff suppressed because it is too large
Load diff
|
|
@ -1,61 +0,0 @@
|
|||
/* acconf.h.in. Generated from configure.in by autoheader. */
|
||||
|
||||
/* Define to 1 if you have the <dlfcn.h> header file. */
|
||||
#undef HAVE_DLFCN_H
|
||||
|
||||
/* Define to 1 if you have the <inttypes.h> header file. */
|
||||
#undef HAVE_INTTYPES_H
|
||||
|
||||
/* Define to 1 if you have the <math.h> header file. */
|
||||
#undef HAVE_MATH_H
|
||||
|
||||
/* Define to 1 if you have the <memory.h> header file. */
|
||||
#undef HAVE_MEMORY_H
|
||||
|
||||
/* Define to 1 if you have the <stdint.h> header file. */
|
||||
#undef HAVE_STDINT_H
|
||||
|
||||
/* Define to 1 if you have the <stdlib.h> header file. */
|
||||
#undef HAVE_STDLIB_H
|
||||
|
||||
/* Define to 1 if you have the <strings.h> header file. */
|
||||
#undef HAVE_STRINGS_H
|
||||
|
||||
/* Define to 1 if you have the <string.h> header file. */
|
||||
#undef HAVE_STRING_H
|
||||
|
||||
/* Define to 1 if you have the <sys/stat.h> header file. */
|
||||
#undef HAVE_SYS_STAT_H
|
||||
|
||||
/* Define to 1 if you have the <sys/types.h> header file. */
|
||||
#undef HAVE_SYS_TYPES_H
|
||||
|
||||
/* Define to 1 if you have the <unistd.h> header file. */
|
||||
#undef HAVE_UNISTD_H
|
||||
|
||||
/* Name of package */
|
||||
#undef PACKAGE
|
||||
|
||||
/* Define to the address where bug reports for this package should be sent. */
|
||||
#undef PACKAGE_BUGREPORT
|
||||
|
||||
/* Define to the full name of this package. */
|
||||
#undef PACKAGE_NAME
|
||||
|
||||
/* Define to the full name and version of this package. */
|
||||
#undef PACKAGE_STRING
|
||||
|
||||
/* Define to the one symbol short name of this package. */
|
||||
#undef PACKAGE_TARNAME
|
||||
|
||||
/* Define to the version of this package. */
|
||||
#undef PACKAGE_VERSION
|
||||
|
||||
/* Define to 1 if you have the ANSI C header files. */
|
||||
#undef STDC_HEADERS
|
||||
|
||||
/* Version number of package */
|
||||
#undef VERSION
|
||||
|
||||
/* Define to `unsigned int' if <sys/types.h> does not define. */
|
||||
#undef size_t
|
||||
7239
gdtoa/aclocal.m4
vendored
7239
gdtoa/aclocal.m4
vendored
File diff suppressed because it is too large
Load diff
21150
gdtoa/configure
vendored
21150
gdtoa/configure
vendored
File diff suppressed because it is too large
Load diff
Loading…
Add table
Reference in a new issue