mirror of
https://github.com/netwide-assembler/nasm.git
synced 2024-11-21 03:14:19 +08:00
397c169736
Instead of trying to do hacks in the Makefiles, define header files for specific compilers if they can't use autoconf. Currently defined for Microsoft Visual Studio, based on MSDN documentation. It is currently untested. Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
10 lines
239 B
Bash
Executable File
10 lines
239 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 config.status
|
|
rm -f Makefile rdoff/Makefile doc/Makefile
|
|
rm -f config.h.in config.h config/config.h
|