rdoff/test/Makefile: actually do build tests

Add actual Makefile rules for the rdoff tests.

Signed-off-by: H. Peter Anvin <hpa@zytor.com>
This commit is contained in:
H. Peter Anvin 2009-07-03 21:19:37 -07:00
parent 20c1d4136d
commit 06c05ae72a

View file

@ -1,2 +1,10 @@
RDT = $(patsubst %.asm,%.rdf,$(wildcard *.asm))
NASM = ../../nasm
all: $(RDT)
%.rdf: %.asm
$(NASM) -f rdf -o $@ -l $*.lst $<
clean: clean:
rm -f *.rdf *.rdx rm -f *.rdf *.rdx *.lst