Skip to content

Update config.guess, rerun autotools, update gitignore #192

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,8 @@
**/MSVisualStudio/**/*.mps
**/MSVisualStudio/**/*.lp
**/MSVisualStudio/**/*.out

# Ignore autotools cache files
aclocal.m4*
acinclude.m4
autom4te*
14 changes: 7 additions & 7 deletions Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ PRE_UNINSTALL = :
POST_UNINSTALL = :
build_triplet = @build@
host_triplet = @host@
DIST_COMMON = README $(am__configure_deps) \
$(srcdir)/BuildTools/Makemain.inc $(srcdir)/Makefile.am \
$(srcdir)/Makefile.in $(top_srcdir)/configure \
$(top_srcdir)/doxydoc/doxygen.conf.in INSTALL compile \
config.guess config.sub depcomp install-sh ltmain.sh missing
DIST_COMMON = $(am__configure_deps) $(srcdir)/BuildTools/Makemain.inc \
$(srcdir)/Makefile.am $(srcdir)/Makefile.in \
$(top_srcdir)/configure $(top_srcdir)/doxydoc/doxygen.conf.in \
INSTALL compile config.guess config.sub depcomp install-sh \
ltmain.sh missing
@HAVE_EXTERNALS_TRUE@am__append_1 = Dependencies
@HAVE_EXTERNALS_TRUE@am__append_2 = .Dependencies-stamp
subdir = .
Expand Down Expand Up @@ -261,7 +261,7 @@ SUBDIRS = $(subdirs)
# Files that are generated and should be cleaned with make distclean
DISTCLEANFILES = coin_subdirs.txt $(am__append_2) \
$(VPATH_DISTCLEANFILES)
DocFiles = README AUTHORS LICENSE
DocFiles = README README.md AUTHORS AUTHORS.md LICENSE LICENSE.md
DocInstallDir = $(datadir)/coin/doc/$(PACKAGE_NAME)
COIN_HAS_DOXYGEN = @COIN_HAS_DOXYGEN_TRUE@TRUE
COIN_HAS_LATEX = @COIN_HAS_LATEX_TRUE@TRUE
Expand Down Expand Up @@ -828,7 +828,7 @@ uninstall-all-doxygen-docs:
fi ; \
done ;

install-doc: $(DocFiles)
install-doc:
test -z "$(DocInstallDir)" || $(mkdir_p) "$(DESTDIR)$(DocInstallDir)"
for file in $(DocFiles); do \
if test -f "$$file"; then dir=; else dir="$(srcdir)/"; fi; \
Expand Down
Loading