nasm/rdoff/test/Makefile
H. Peter Anvin 06c05ae72a rdoff/test/Makefile: actually do build tests
Add actual Makefile rules for the rdoff tests.

Signed-off-by: H. Peter Anvin <hpa@zytor.com>
2009-07-03 21:19:37 -07:00

10 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