mirror of
https://github.com/netwide-assembler/nasm.git
synced 2024-11-21 03:14:19 +08:00
Additional rules in test/Makefile
Add rules for .pl -> .asm
This commit is contained in:
parent
9d637df6da
commit
b8e604eb5d
@ -1,7 +1,8 @@
|
||||
.SUFFIXES: .bin .o .o64 .obj .obj64 .exe .asm .lst
|
||||
.SUFFIXES: .bin .o .o64 .obj .obj64 .exe .asm .lst .pl
|
||||
|
||||
NASM = ../nasm
|
||||
NASMOPT = -O999 -I../misc
|
||||
PERL = perl
|
||||
|
||||
%.bin: %.asm $(NASM)
|
||||
$(NASM) $(NASMOPT) -f bin -o $@ -l $*.lst $<
|
||||
@ -18,6 +19,9 @@ NASMOPT = -O999 -I../misc
|
||||
%.obj64: %.asm $(NASM)
|
||||
$(NASM) $(NASMOPT) -f win64 -o $@ -l $*.lst $<
|
||||
|
||||
%.asm: %.pl
|
||||
$(PERL) $< > $@
|
||||
|
||||
all:
|
||||
|
||||
clean:
|
||||
|
Loading…
Reference in New Issue
Block a user