mirror of
https://github.com/netwide-assembler/nasm.git
synced 2024-11-21 03:14:19 +08:00
2030bd21f4
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.
8 lines
139 B
Bash
Executable File
8 lines
139 B
Bash
Executable File
#!/bin/sh -xe
|
|
#
|
|
# Simple script to run the appropriate autotools from a repository.
|
|
#
|
|
autoheader
|
|
autoconf
|
|
rm -rf autom4te.cache config.log
|