diff options
author | H. Peter Anvin <hpa@zytor.com> | 2009-11-28 15:34:32 -0800 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2009-11-28 15:34:32 -0800 |
commit | 1199cddebbd04085f7b8078247dbd9937a66c9d3 (patch) | |
tree | 6c977acb9c812c6d271135ce15fdb062db4a351a /test/Makefile | |
parent | bd38c8f231d938ffdf0916809bf2a6b65e62ea61 (diff) | |
download | nasm-1199cddebbd04085f7b8078247dbd9937a66c9d3.tar.gz nasm-1199cddebbd04085f7b8078247dbd9937a66c9d3.tar.bz2 nasm-1199cddebbd04085f7b8078247dbd9937a66c9d3.zip |
test/Makefile: make it easier to inject options
Make it easier to inject options into test compiles.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'test/Makefile')
-rw-r--r-- | test/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Makefile b/test/Makefile index 2dcf2eb..8b51359 100644 --- a/test/Makefile +++ b/test/Makefile @@ -1,7 +1,7 @@ .SUFFIXES: .bin .o .o64 .obj .obj64 .exe .asm .lst .pl NASM = ../nasm -NASMOPT = -Ox -I../misc +NASMOPT = -Ox -I../misc $(OPT) PERL = perl TESTS = $(wildcard *.asm) |