test: add Makefile target for elfx32

Add an .ox Makefile target for an ELFx32 object.

Signed-off-by: H. Peter Anvin (Intel) <hpa@zytor.com>
This commit is contained in:
H. Peter Anvin (Intel) 2020-06-26 16:14:31 -07:00
parent eb571a3ac3
commit 47d207d1a3

View file

@ -23,6 +23,9 @@ $(NASM):
%.o: %.asm $(NASMDEP)
$(NASM) $(NASMOPT) -f elf32 -gdwarf -o $@ -MD $@.dep -l $@.lst $<
%.ox: %.asm $(NASMDEP)
$(NASM) $(NASMOPT) -f elfx32 -gdwarf -o $@ -MD $@.dep -l $@.lst $<
%.o64: %.asm $(NASMDEP)
$(NASM) $(NASMOPT) -f elf64 -gdwarf -o $@ -MD $@.dep -l $@.lst $<