1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-06 16:29:30 +00:00
cc65/test/err/Makefile
2014-11-25 12:56:45 +01:00

52 lines
1.1 KiB
Makefile

# makefile for the tests that MUST NOT compile
ifneq ($(shell echo),)
CMD_EXE = 1
endif
CC65FLAGS = -t sim6502
CL65 := $(if $(wildcard ../../bin/cl65*),../../bin/cl65,cl65)
ifdef CMD_EXE
RM := del /f
else
RM := rm -f
endif
WORKDIR := ./../../testwrk
.PHONY: all clean
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