1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-07 19:29:18 +00:00
cc65/test/misc/Makefile

64 lines
1.7 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
ifdef CMD_EXE
2015-06-26 22:03:45 +00:00
S := $(subst /,\,/)
NOT := - # Hack
DEL = -del /f $(subst /,\,$1)
2014-11-23 11:18:19 +00:00
else
2015-06-26 22:03:45 +00:00
S := /
NOT := !
DEL = $(RM) $1
2014-11-23 11:18:19 +00:00
endif
2014-11-22 21:22:30 +00:00
2015-06-26 22:03:45 +00:00
CC65FLAGS := -t sim6502
SIM65FLAGS := -x 200000000
CL65 := $(if $(wildcard ../../bin/cl65*),../../bin/cl65,cl65)
SIM65 := $(if $(wildcard ../../bin/sim65*),..$S..$Sbin$Ssim65,sim65)
2014-11-25 11:56:45 +00:00
2015-06-26 22:03:45 +00:00
WORKDIR := ..$S..$Stestwrk
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 $@
2015-06-26 22:03:45 +00:00
$(NOT) $(SIM65) $(SIM65FLAGS) $@
2014-11-22 21:22:30 +00:00
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) $@
2015-06-28 23:57:39 +00:00
$(WORKDIR)/cc65141011%prg: cc65141011.c
@echo "FIXME: " $@ "currently can fail."
2015-06-28 23:57:39 +00:00
$(CL65) $(subst .,,$(*:.o%=-O%)) $(CC65FLAGS) $< -o $@
-$(SIM65) $(SIM65FLAGS) $@
2014-11-22 21:22:30 +00:00
clean:
@$(call DEL,$(TESTS))
@$(call DEL,$(SOURCES:.c=.o))
@$(call DEL,$(SOURCES:%.c=$(WORKDIR)/%.out))