mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-02-23 17:29:23 +08:00
test/Makefile: add a rule to run omfdump on an .obj file
omfdump is really useful while debugging obj output, so add an explicit rule to generate omfdump output. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
This commit is contained in:
parent
91ac58dc65
commit
08e71e7dc4
@ -28,6 +28,9 @@ $(NASM):
|
||||
%.obj: %.asm $(NASM)
|
||||
$(NASM) $(NASMOPT) -f obj -o $@ -l $*.lst $<
|
||||
|
||||
%.od: %.obj ../misc/omfdump
|
||||
../misc/omfdump $< > $@
|
||||
|
||||
%.coff: %.asm $(NASM)
|
||||
$(NASM) $(NASMOPT) -f coff -o $@ -l $*.lst $<
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user