Skip to content

Commit

Permalink
Use flavour='foreign' for AM_INIT_AUTOMAKE() to avoid maintaining fil…
Browse files Browse the repository at this point in the history
…es required by the 'gnu' flavour (AUTHORS, COPYING, NEWS, README)
  • Loading branch information
bryanirby committed Jul 8, 2024
1 parent d2fec56 commit f902b49
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Empty file removed AUTHORS
Empty file.
Empty file removed COPYING
Empty file.
8 changes: 4 additions & 4 deletions Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -672,15 +672,15 @@ $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
@for dep in $?; do \
case '$(am__configure_deps)' in \
*$$dep*) \
echo ' cd $(srcdir) && $(AUTOMAKE) --gnu'; \
$(am__cd) $(srcdir) && $(AUTOMAKE) --gnu \
echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \
$(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \
&& exit 0; \
exit 1;; \
esac; \
done; \
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
$(am__cd) $(top_srcdir) && \
$(AUTOMAKE) --gnu Makefile
$(AUTOMAKE) --foreign Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
@case '$?' in \
*config.status*) \
Expand Down
Empty file removed NEWS
Empty file.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ AC_CANONICAL_TARGET([])

#AC_CONFIG_HEADERS(config.h)
AC_CONFIG_SRCDIR([fitscore.c])
AM_INIT_AUTOMAKE
AM_INIT_AUTOMAKE([foreign])

LT_INIT

Expand Down

0 comments on commit f902b49

Please sign in to comment.