]> sigrok.org Git - libsigrok.git/commitdiff
autotools: Don't use "foreign" option.
authorUwe Hermann <redacted>
Sun, 17 Mar 2013 11:58:26 +0000 (12:58 +0100)
committerUwe Hermann <redacted>
Sun, 17 Mar 2013 12:15:56 +0000 (13:15 +0100)
This adds INSTALL and allows for a few more sanity checks being done.

.gitignore
AUTHORS [new file with mode: 0644]
autogen.sh
configure.ac

index 5b2853401044023ffb953ab53b2250a783e07ea5..fc940eedcf105d0a1dffcdbcc5448bc9ade3963a 100644 (file)
@@ -19,6 +19,7 @@ stamp-h1
 autostuff/
 version.h
 ChangeLog
+INSTALL
 
 # recursive autoconf leftovers
 .deps
diff --git a/AUTHORS b/AUTHORS
new file mode 100644 (file)
index 0000000..28c1b20
--- /dev/null
+++ b/AUTHORS
@@ -0,0 +1,7 @@
+-------------------------------------------------------------------------------
+AUTHORS
+-------------------------------------------------------------------------------
+
+Please check the source code files and/or git history and/or ChangeLog for
+a list of all authors and contributors.
+
index 9ee4cd4c4329ea63163b28f95d32b601298a9a99..afad5965ecca8a64b2ed07fba5d6a7433bec1876 100755 (executable)
@@ -55,6 +55,6 @@ echo "Generating build system..."
 ${LIBTOOLIZE} --install --copy --quiet || exit 1
 aclocal ${ACLOCAL_DIR} || exit 1
 autoheader || exit 1
-automake --add-missing --copy --foreign || exit 1
+automake --add-missing --copy || exit 1
 autoconf || exit 1
 
index 908afe9a905022d90ec413a10beee59eac36b884..2d30811de06eb762e33d24160f1487f6b9950186 100644 (file)
@@ -34,7 +34,7 @@ AC_CONFIG_MACRO_DIR([autostuff])
 AC_CONFIG_AUX_DIR([autostuff])
 
 # We require at least automake 1.11 (needed for 'silent rules').
-AM_INIT_AUTOMAKE([1.11 -Wall -Werror foreign std-options])
+AM_INIT_AUTOMAKE([1.11 -Wall -Werror std-options check-news])
 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
 m4_ifdef([AM_PROG_AR], [AM_PROG_AR])