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

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

index eb5dd8eb19eb5c843a03a84b1b0dd097bc05b939..5164f3ca2f77bfc05d9bf63342b4deb77fc40658 100644 (file)
@@ -9,6 +9,7 @@ configure
 stamp-h1
 autostuff/
 ChangeLog
+INSTALL
 
 # recursive autoconf leftovers
 Makefile
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.
+
diff --git a/COPYING b/COPYING
new file mode 100644 (file)
index 0000000..f96ab0e
--- /dev/null
+++ b/COPYING
@@ -0,0 +1,5 @@
+The 'sigrok-firmware' project/repo/tarball has no license per se, since
+it's just a collection of firmware files from various sources.
+
+Please check README for info on the licenses of these firmware files.
+
index 577ccb9a1ff735e54bf9f2bfffcbfa2bae427cda..eeee7683f63e7a1182ccbd73c75b3e02d0618211 100755 (executable)
@@ -53,6 +53,6 @@ echo "Generating build system..."
 mkdir -p autostuff
 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 fcbae2a650477c1a07bda8c1ba662cab2c3394b3..ca50f97bc4a0005fa76825b319cd57e7136bd088 100644 (file)
@@ -28,7 +28,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])])
 
 AC_PROG_INSTALL