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>
This commit is contained in:
H. Peter Anvin (Intel) 2020-07-10 01:54:38 -07:00
parent 23abe9fe88
commit b3c5545556

View file

@ -34,7 +34,7 @@ $(NASM):
$(NASM) $(NASMOPT) -f aout -o $@ -MD $@.dep -l $@.lst $< $(NASM) $(NASMOPT) -f aout -o $@ -MD $@.dep -l $@.lst $<
%.obj: %.asm $(NASMDEP) %.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) %.rdf: %.asm $(NASMDEP)
$(NASM) $(NASMOPT) -f rdf -o $@ -MD $@.dep -l $@.lst $< $(NASM) $(NASMOPT) -f rdf -o $@ -MD $@.dep -l $@.lst $<