diff options
author | H. Peter Anvin <hpa@zytor.com> | 2007-04-12 16:25:58 +0000 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2007-04-12 16:25:58 +0000 |
commit | 2030bd21f4923d4ddd4c093f8756451fc35220f8 (patch) | |
tree | 6a5c6c505f55697268de6aa3fd49ed4c02d94ef4 /autogen.sh | |
parent | 82e15cd5b3034f8bb743538d366341da35f66f6d (diff) | |
download | nasm-2030bd21f4923d4ddd4c093f8756451fc35220f8.tar.gz nasm-2030bd21f4923d4ddd4c093f8756451fc35220f8.tar.bz2 nasm-2030bd21f4923d4ddd4c093f8756451fc35220f8.zip |
autogen.sh script to create configure, et al.
It's become custom to create a script called autogen.sh, which creates
all the auto-generated files using all the appropriate auto* tools when
run, so one doesn't have to worry about checking them into the repository.
This seems like a good idea, follow suit.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/autogen.sh b/autogen.sh new file mode 100755 index 0000000..a38b268 --- /dev/null +++ b/autogen.sh @@ -0,0 +1,7 @@ +#!/bin/sh -xe +# +# Simple script to run the appropriate autotools from a repository. +# +autoheader +autoconf +rm -rf autom4te.cache config.log |