summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH. Peter Anvin (Intel) <hpa@zytor.com>2020-07-08 08:52:49 -0700
committerH. Peter Anvin (Intel) <hpa@zytor.com>2020-07-08 08:52:49 -0700
commit8f385ec6a0fb0913c884ff63c67c60777eb8c41b (patch)
tree4c1de42bb1e48085de664690d9bab15b1c68c34a
parent6f52ecfa4968d4d34417f780ef42b1690ec692fc (diff)
downloadnasm-8f385ec6a0fb0913c884ff63c67c60777eb8c41b.tar.gz
test/Makefile: allow overriding -L+
Add a LISTOPT to make it possible to override -L+ without a bunch of painful additional options. Signed-off-by: H. Peter Anvin (Intel) <hpa@zytor.com>
-rw-r--r--test/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/Makefile b/test/Makefile
index 00d43662..6b6ffbfe 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -2,7 +2,8 @@
NASMDEP = ../nasm
NASM = ../nasm
-NASMOPT = -Ox -I../misc -L+ $(OPT)
+LISTOPT = -L+
+NASMOPT = -Ox -I../misc $(LISTOPT) $(OPT)
PERL = perl
TESTS = $(wildcard *.asm)
RM_F = rm -f