fixed up the rest of the tests, added rudimentary makefile(s)

This commit is contained in:
mrdudz
2014-11-22 18:28:05 +01:00
parent 20072a379c
commit 6144063a6d
36 changed files with 272 additions and 16 deletions

42
test/err/Makefile Normal file
View File

@@ -0,0 +1,42 @@
# makefile for the tests that MUST NOT compile
CC65FLAGS = -t sim6502
CL65 := $(if $(wildcard ../../bin/cl65*),../../bin/cl65,cl65)
SIM65 := $(if $(wildcard ../../bin/sim65*),../../bin/sim65,sim65)
RM := rm -f
.PHONY: all
TESTS := $(patsubst %.c,%.prg,$(wildcard *.c))
TESTS += $(patsubst %.c,%.o.prg,$(wildcard *.c))
TESTS += $(patsubst %.c,%.os.prg,$(wildcard *.c))
TESTS += $(patsubst %.c,%.osi.prg,$(wildcard *.c))
TESTS += $(patsubst %.c,%.osir.prg,$(wildcard *.c))
TESTS += $(patsubst %.c,%.oi.prg,$(wildcard *.c))
TESTS += $(patsubst %.c,%.oir.prg,$(wildcard *.c))
TESTS += $(patsubst %.c,%.or.prg,$(wildcard *.c))
all: $(TESTS)
%.prg: %.c
! $(CL65) $(CC65FLAGS) $< -o $@
%.o.prg: %.c
! $(CL65) $(CC65FLAGS) $< -o $@
%.os.prg: %.c
! $(CL65) $(CC65FLAGS) $< -o $@
%.osi.prg: %.c
! $(CL65) $(CC65FLAGS) $< -o $@
%.osir.prg: %.c
! $(CL65) $(CC65FLAGS) $< -o $@
%.oi.prg: %.c
! $(CL65) $(CC65FLAGS) $< -o $@
%.oir.prg: %.c
! $(CL65) $(CC65FLAGS) $< -o $@
%.or.prg: %.c
! $(CL65) $(CC65FLAGS) $< -o $@
clean:
@$(RM) *.o
@$(RM) *.prg