summaryrefslogtreecommitdiffstats
path: root/autogen.sh
diff options
context:
space:
mode:
authorP. J. McDermott <pj@pehjota.net>2021-08-28 14:28:55 (EDT)
committer P. J. McDermott <pj@pehjota.net>2021-08-28 14:28:55 (EDT)
commit21e7e051b8c14d764bb283da59d8c04fb336ed77 (patch)
tree3718341d3abeb0e472ace1c834a8759b4bd2c67c /autogen.sh
downloadatsign-21e7e051b8c14d764bb283da59d8c04fb336ed77.zip
atsign-21e7e051b8c14d764bb283da59d8c04fb336ed77.tar.gz
atsign-21e7e051b8c14d764bb283da59d8c04fb336ed77.tar.bz2
Initial commit
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh28
1 files changed, 28 insertions, 0 deletions
diff --git a/autogen.sh b/autogen.sh
new file mode 100755
index 0000000..c80fde1
--- /dev/null
+++ b/autogen.sh
@@ -0,0 +1,28 @@
+#!/bin/sh
+#
+# Script to generate the build system.
+#
+# Copyright (C) 2013 P. J. McDermott
+#
+# Copying and distribution of this file, with or without modification,
+# are permitted in any medium without royalty provided the copyright
+# notice and this notice are preserved. This file is offered as-is,
+# without any warranty.
+
+set -e
+
+srcdir="${0%/*}"
+
+{(
+ cd "${srcdir}"
+ [ -d build-aux ] || mkdir build-aux
+ cat >ChangeLog <<-EOF
+This file is generated upon release. Run \`git log\` for a list of changes.
+EOF
+ aclocal
+ autoconf
+ autoheader
+ automake --add-missing --copy
+)}
+
+"${srcdir}/configure" "${@}"