mirror of
https://github.com/cc65/cc65.git
synced 2024-11-03 10:07:02 +00:00
68 lines
1.7 KiB
Makefile
68 lines
1.7 KiB
Makefile
|
|
# makefile for the remaining tests that need special care in one way or another
|
|
|
|
ifneq ($(shell echo),)
|
|
CMD_EXE = 1
|
|
endif
|
|
|
|
CC65FLAGS = -t sim6502
|
|
SIM65FLAGS = -x 200000000
|
|
|
|
CL65 := $(if $(wildcard ../../bin/cl65*),../../bin/cl65,cl65)
|
|
SIM65 := $(if $(wildcard ../../bin/sim65*),../../bin/sim65,sim65)
|
|
|
|
ifdef CMD_EXE
|
|
RM := del /f
|
|
else
|
|
RM := rm -f
|
|
endif
|
|
|
|
WORKDIR := ./../../testwrk
|
|
|
|
DIFF := $(WORKDIR)/bdiff
|
|
|
|
.PHONY: all clean
|
|
|
|
SOURCES := $(wildcard *.c)
|
|
TESTS := $(SOURCES:%.c=$(WORKDIR)/%.prg)
|
|
TESTS += $(SOURCES:%.c=$(WORKDIR)/%.o.prg)
|
|
TESTS += $(SOURCES:%.c=$(WORKDIR)/%.os.prg)
|
|
TESTS += $(SOURCES:%.c=$(WORKDIR)/%.osi.prg)
|
|
TESTS += $(SOURCES:%.c=$(WORKDIR)/%.osir.prg)
|
|
TESTS += $(SOURCES:%.c=$(WORKDIR)/%.oi.prg)
|
|
TESTS += $(SOURCES:%.c=$(WORKDIR)/%.oir.prg)
|
|
TESTS += $(SOURCES:%.c=$(WORKDIR)/%.or.prg)
|
|
|
|
# FIXME: actually use/build differently optimized programs here
|
|
|
|
all: $(TESTS)
|
|
|
|
# should compile, but then hangs in an endless loop
|
|
$(WORKDIR)/endless%prg: endless.c
|
|
$(CL65) $(CC65FLAGS) $< -o $@
|
|
! $(SIM65) $(SIM65FLAGS) $@
|
|
|
|
# these need reference data that cant be generated by a host compiled program
|
|
# in a useful way
|
|
$(WORKDIR)/limits%prg: limits.c
|
|
$(CL65) $(CC65FLAGS) $< -o $@
|
|
$(SIM65) $(SIM65FLAGS) $@ > $(WORKDIR)/limits.out
|
|
$(DIFF) $(WORKDIR)/limits.out limits.ref
|
|
|
|
# the rest are tests that fail currently for one reason or another
|
|
$(WORKDIR)/fields%prg: fields.c
|
|
@echo "FIXME: " $@ "will currently fail"
|
|
$(CL65) $(CC65FLAGS) $< -o $@
|
|
-$(SIM65) $(SIM65FLAGS) $@
|
|
$(WORKDIR)/sitest%prg: sitest.c
|
|
@echo "FIXME: " $@ "will currently fail"
|
|
-$(CL65) $(CC65FLAGS) $< -o $@
|
|
-$(SIM65) $(SIM65FLAGS) $@
|
|
|
|
clean:
|
|
@$(RM) $(TESTS)
|
|
@$(RM) $(SOURCES:%.c=$(WORKDIR)/%.o)
|
|
@$(RM) $(SOURCES:%.c=$(WORKDIR)/%.out)
|
|
|
|
|