mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-01-06 16:04:43 +08:00
06c05ae72a
Add actual Makefile rules for the rdoff tests. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
11 lines
162 B
Makefile
11 lines
162 B
Makefile
RDT = $(patsubst %.asm,%.rdf,$(wildcard *.asm))
|
|
NASM = ../../nasm
|
|
|
|
all: $(RDT)
|
|
|
|
%.rdf: %.asm
|
|
$(NASM) -f rdf -o $@ -l $*.lst $<
|
|
|
|
clean:
|
|
rm -f *.rdf *.rdx *.lst
|