From 06c05ae72a4cf04bb57aa94601f5a65bfaea706b Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Fri, 3 Jul 2009 21:19:37 -0700 Subject: [PATCH] rdoff/test/Makefile: actually do build tests Add actual Makefile rules for the rdoff tests. Signed-off-by: H. Peter Anvin --- rdoff/test/Makefile | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/rdoff/test/Makefile b/rdoff/test/Makefile index 8e9f42e2..658a6d4e 100644 --- a/rdoff/test/Makefile +++ b/rdoff/test/Makefile @@ -1,2 +1,10 @@ +RDT = $(patsubst %.asm,%.rdf,$(wildcard *.asm)) +NASM = ../../nasm + +all: $(RDT) + +%.rdf: %.asm + $(NASM) -f rdf -o $@ -l $*.lst $< + clean: - rm -f *.rdf *.rdx + rm -f *.rdf *.rdx *.lst -- 2.11.4.GIT