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
|
2015-07-10 22:01:39 +00:00
|
|
|
DEL = -del /f $(subst /,\,$1)
|
2014-11-23 11:18:19 +00:00
|
|
|
else
|
2015-06-26 22:03:45 +00:00
|
|
|
S := /
|
|
|
|
NOT := !
|
2015-06-26 22:33:24 +00:00
|
|
|
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-24 19:57:58 +00:00
|
|
|
|
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)
|
2014-12-18 19:15:24 +00:00
|
|
|
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
|
2014-11-25 12:47:31 +00:00
|
|
|
$(WORKDIR)/endless%prg: endless.c
|
2014-12-18 19:15:24 +00:00
|
|
|
$(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
|
2014-11-25 12:47:31 +00:00
|
|
|
$(WORKDIR)/limits%prg: limits.c
|
2014-12-18 19:15:24 +00:00
|
|
|
$(CL65) $(subst .,,$(*:.o%=-O%)) $(CC65FLAGS) $< -o $@
|
2014-11-25 12:47:31 +00:00
|
|
|
$(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
|
2014-11-25 12:47:31 +00:00
|
|
|
$(WORKDIR)/fields%prg: fields.c
|
2014-12-17 22:44:39 +00:00
|
|
|
@echo "FIXME: " $@ "currently will fail."
|
2014-12-18 19:15:24 +00:00
|
|
|
$(CL65) $(subst .,,$(*:.o%=-O%)) $(CC65FLAGS) $< -o $@
|
2014-11-22 21:22:30 +00:00
|
|
|
-$(SIM65) $(SIM65FLAGS) $@
|
2014-11-25 12:47:31 +00:00
|
|
|
$(WORKDIR)/sitest%prg: sitest.c
|
2014-12-17 22:44:39 +00:00
|
|
|
@echo "FIXME: " $@ "currently will fail."
|
2014-12-18 19:15:24 +00:00
|
|
|
-$(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
|
2015-06-30 13:00:28 +00:00
|
|
|
@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:
|
2015-07-10 22:01:39 +00:00
|
|
|
@$(call DEL,$(TESTS))
|
|
|
|
@$(call DEL,$(SOURCES:.c=.o))
|
|
|
|
@$(call DEL,$(SOURCES:%.c=$(WORKDIR)/%.out))
|