[nasm:nasm-2.15.xx] test: add Makefile target for elfx32

nasm-bot for H. Peter Anvin (Intel) hpa at zytor.com
Fri Jun 26 16:18:04 PDT 2020


Commit-ID:  47d207d1a3ea9197ef6c55b881fa56f14882a34f
Gitweb:     http://repo.or.cz/w/nasm.git?a=commitdiff;h=47d207d1a3ea9197ef6c55b881fa56f14882a34f
Author:     H. Peter Anvin (Intel) <hpa at zytor.com>
AuthorDate: Fri, 26 Jun 2020 16:14:31 -0700
Committer:  H. Peter Anvin (Intel) <hpa at zytor.com>
CommitDate: Fri, 26 Jun 2020 16:14:31 -0700

test: add Makefile target for elfx32

Add an .ox Makefile target for an ELFx32 object.

Signed-off-by: H. Peter Anvin (Intel) <hpa at zytor.com>


---
 test/Makefile | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/test/Makefile b/test/Makefile
index 2e343ee1..e09e1148 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -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 $<
 


More information about the Nasm-commits mailing list