summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH. Peter Anvin (Intel) <hpa@zytor.com>2020-07-10 01:54:38 -0700
committerH. Peter Anvin (Intel) <hpa@zytor.com>2020-07-10 01:54:38 -0700
commitb3c554555687886e2a521cf0fb0b27ef9d51d306 (patch)
treec8e6be8d7d48bdd5a6359aab8ace75f73cce97bb
parent23abe9fe88a0d045e063627e682a540a5d06779c (diff)
downloadnasm-b3c554555687886e2a521cf0fb0b27ef9d51d306.tar.gz
test/Makefile: fix command line for .obj format
The command line for .obj had a stray -F. Signed-off-by: H. Peter Anvin (Intel) <hpa@zytor.com>
-rw-r--r--test/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Makefile b/test/Makefile
index 6b6ffbfe..7d09b346 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -34,7 +34,7 @@ $(NASM):
$(NASM) $(NASMOPT) -f aout -o $@ -MD $@.dep -l $@.lst $<
%.obj: %.asm $(NASMDEP)
- $(NASM) $(NASMOPT) -f obj -gborland -F -o $@ -MD $@.dep -l $@.lst $<
+ $(NASM) $(NASMOPT) -f obj -gborland -o $@ -MD $@.dep -l $@.lst $<
%.rdf: %.asm $(NASMDEP)
$(NASM) $(NASMOPT) -f rdf -o $@ -MD $@.dep -l $@.lst $<