diff options
author | H. Peter Anvin <hpa@zytor.com> | 2007-10-19 13:16:51 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2007-10-19 13:16:51 -0700 |
commit | 487a0870663423ec66425da47a73c4175410b1e7 (patch) | |
tree | 89ecaa73a28a1932766a1c0c1fac562eb3adaac7 /test | |
parent | 361584882e208c7f23dfc0c1e3a1c3ee8db2943d (diff) | |
download | nasm-487a0870663423ec66425da47a73c4175410b1e7.tar.gz nasm-487a0870663423ec66425da47a73c4175410b1e7.tar.bz2 nasm-487a0870663423ec66425da47a73c4175410b1e7.zip |
test/Makefile: Use -Ox instead of -O999
Diffstat (limited to 'test')
-rw-r--r-- | test/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Makefile b/test/Makefile index 64b6523..cc11f0e 100644 --- a/test/Makefile +++ b/test/Makefile @@ -1,7 +1,7 @@ .SUFFIXES: .bin .o .o64 .obj .obj64 .exe .asm .lst .pl NASM = ../nasm -NASMOPT = -O999 -I../misc +NASMOPT = -Ox -I../misc PERL = perl %.bin: %.asm $(NASM) |