mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-03-31 18:20:22 +08:00
test/Makefile: add rules for the automatic tests
Add Makefile rules to run the automatic tests. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
This commit is contained in:
parent
833caeab28
commit
13d9d869a5
@ -1,8 +1,9 @@
|
||||
.SUFFIXES: .bin .o .o64 .obj .obj64 .exe .asm .lst .pl
|
||||
|
||||
NASM = ../nasm
|
||||
NASM = ../nasm
|
||||
NASMOPT = -Ox -I../misc
|
||||
PERL = perl
|
||||
PERL = perl
|
||||
TESTS = $(wildcard *.asm)
|
||||
|
||||
%.bin: %.asm $(NASM)
|
||||
$(NASM) $(NASMOPT) -f bin -o $@ -l $*.lst $<
|
||||
@ -24,5 +25,15 @@ PERL = perl
|
||||
|
||||
all:
|
||||
|
||||
golden: performtest.pl $(TESTS)
|
||||
$(PERL) performtest.pl --golden --nasm='$(NASM)' $(TESTS)
|
||||
|
||||
test: performtest.pl $(NASM) $(TESTS)
|
||||
$(PERL) performtest.pl --nasm='$(NASM)' $(TESTS)
|
||||
|
||||
clean:
|
||||
rm -f *.com *.o *.o64 *.obj *.obj64 *.exe *.lst *.bin
|
||||
rm -rf testresults
|
||||
|
||||
spotless: clean
|
||||
rm -rf golden
|
||||
|
Loading…
x
Reference in New Issue
Block a user