summaryrefslogtreecommitdiff
path: root/rdoff/test/Makefile
blob: 658a6d4e0c4e0acde835d0118a3a8c4c64321fd8 (plain)
1
2
3
4
5
6
7
8
9
10
RDT  = $(patsubst %.asm,%.rdf,$(wildcard *.asm))
NASM = ../../nasm

all: $(RDT)

%.rdf: %.asm
	$(NASM) -f rdf -o $@ -l $*.lst $<

clean:
	rm -f *.rdf *.rdx *.lst