1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-26 05:29:30 +00:00
cc65/test/misc/Makefile

57 lines
1.5 KiB
Makefile
Raw Normal View History

2014-11-22 21:22:30 +00:00
2014-11-23 11:18:19 +00:00
# makefile for the remaining tests that need special care in one way or another
ifneq ($(shell echo),)
2014-12-17 22:44:39 +00:00
CMD_EXE := 1
2014-11-23 11:18:19 +00:00
endif
2014-12-17 22:44:39 +00:00
CC65FLAGS := -t sim6502
SIM65FLAGS := -x 200000000
2014-11-22 21:22:30 +00:00
CL65 := $(if $(wildcard ../../bin/cl65*),../../bin/cl65,cl65)
SIM65 := $(if $(wildcard ../../bin/sim65*),../../bin/sim65,sim65)
2014-11-23 11:18:19 +00:00
ifdef CMD_EXE
RM := del /f
else
2014-11-22 21:22:30 +00:00
RM := rm -f
2014-11-23 11:18:19 +00:00
endif
2014-11-22 21:22:30 +00:00
2014-12-17 22:44:39 +00:00
WORKDIR := ../../testwrk
2014-11-25 11:56:45 +00:00
DIFF := $(WORKDIR)/bdiff
2014-11-23 11:18:19 +00:00
.PHONY: all clean
2014-11-22 21:22:30 +00:00
2014-11-26 18:32:54 +00:00
SOURCES := $(wildcard *.c)
TESTS := $(foreach option,. .o. .os. .osi. .osir. .oi. .oir. .or.,$(SOURCES:%.c=$(WORKDIR)/%$(option)prg))
2014-11-22 21:22:30 +00:00
all: $(TESTS)
# should compile, but then hangs in an endless loop
$(WORKDIR)/endless%prg: endless.c
$(CL65) $(subst .,,$(*:.o%=-O%)) $(CC65FLAGS) $< -o $@
2014-11-22 21:22:30 +00:00
! $(SIM65) $(SIM65FLAGS) $@
2014-12-17 22:44:39 +00:00
# these need reference data that can't be generated by a host-compiled program,
2014-11-22 21:22:30 +00:00
# in a useful way
$(WORKDIR)/limits%prg: limits.c
$(CL65) $(subst .,,$(*:.o%=-O%)) $(CC65FLAGS) $< -o $@
$(SIM65) $(SIM65FLAGS) $@ > $(WORKDIR)/limits.out
$(DIFF) $(WORKDIR)/limits.out limits.ref
2014-11-22 21:22:30 +00:00
# the rest are tests that fail currently for one reason or another
$(WORKDIR)/fields%prg: fields.c
2014-12-17 22:44:39 +00:00
@echo "FIXME: " $@ "currently will fail."
$(CL65) $(subst .,,$(*:.o%=-O%)) $(CC65FLAGS) $< -o $@
2014-11-22 21:22:30 +00:00
-$(SIM65) $(SIM65FLAGS) $@
$(WORKDIR)/sitest%prg: sitest.c
2014-12-17 22:44:39 +00:00
@echo "FIXME: " $@ "currently will fail."
-$(CL65) $(subst .,,$(*:.o%=-O%)) $(CC65FLAGS) $< -o $@
2014-12-17 22:44:39 +00:00
# -$(SIM65) $(SIM65FLAGS) $@
2014-11-22 21:22:30 +00:00
clean:
@$(RM) $(TESTS)
@$(RM) $(SOURCES:.c=.o)
2014-11-26 18:32:54 +00:00
@$(RM) $(SOURCES:%.c=$(WORKDIR)/%.out)