1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-04 13:29:35 +00:00
cc65/test/val/Makefile

71 lines
1.7 KiB
Makefile
Raw Normal View History

2014-11-22 16:02:46 +00:00
# makefile for the regression tests that return an error code on failure
2014-11-23 11:18:19 +00:00
ifneq ($(shell echo),)
2014-12-17 22:44:39 +00:00
CMD_EXE := 1
2014-11-23 11:18:19 +00:00
endif
2015-06-26 22:03:45 +00:00
ifdef CMD_EXE
DEL = -del /f $(subst /,\,$1)
2015-06-26 22:03:45 +00:00
else
DEL = $(RM) $1
2015-06-26 22:03:45 +00:00
endif
2014-12-17 22:44:39 +00:00
CC65FLAGS := -t sim6502
SIM65FLAGS := -x 200000000
2014-11-22 16:02:46 +00:00
CL65 := $(if $(wildcard ../../bin/cl65*),../../bin/cl65,cl65)
SIM65 := $(if $(wildcard ../../bin/sim65*),../../bin/sim65,sim65)
2014-12-17 22:44:39 +00:00
WORKDIR := ../../testwrk
2014-11-25 11:56:45 +00:00
2014-11-23 11:18:19 +00:00
.PHONY: all clean
2014-11-22 16:02:46 +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 16:02:46 +00:00
all: $(TESTS)
# Some files have "K & R"-style syntax. Therefore, some forward
# function-declarations don't match the later function definitions.
# Those programs fail when fastcall is used; but, the cdecl calling convention
# tolerates those conflicts. Therefore, make their functions default to cdecl.
#
$(WORKDIR)/cq4%prg $(WORKDIR)/cq71.%rg $(WORKDIR)/cq81%prg $(WORKDIR)/cq84%prg: CC65FLAGS += -Wc --all-cdecl
$(WORKDIR)/%.prg: %.c
2014-11-22 16:02:46 +00:00
$(CL65) $(CC65FLAGS) $< -o $@
$(SIM65) $(SIM65FLAGS) $@
2014-11-22 16:02:46 +00:00
$(WORKDIR)/%.o.prg: %.c
2014-11-26 00:38:30 +00:00
$(CL65) -O $(CC65FLAGS) $< -o $@
$(SIM65) $(SIM65FLAGS) $@
2014-11-22 16:02:46 +00:00
$(WORKDIR)/%.os.prg: %.c
2014-11-26 00:38:30 +00:00
$(CL65) -Os $(CC65FLAGS) $< -o $@
$(SIM65) $(SIM65FLAGS) $@
2014-11-22 16:02:46 +00:00
$(WORKDIR)/%.osi.prg: %.c
2014-11-26 00:38:30 +00:00
$(CL65) -Osi $(CC65FLAGS) $< -o $@
$(SIM65) $(SIM65FLAGS) $@
2014-11-22 16:02:46 +00:00
$(WORKDIR)/%.osir.prg: %.c
2014-11-26 00:38:30 +00:00
$(CL65) -Osir $(CC65FLAGS) $< -o $@
$(SIM65) $(SIM65FLAGS) $@
2014-11-22 16:02:46 +00:00
$(WORKDIR)/%.oi.prg: %.c
2014-11-26 00:38:30 +00:00
$(CL65) -Oi $(CC65FLAGS) $< -o $@
$(SIM65) $(SIM65FLAGS) $@
2014-11-22 16:02:46 +00:00
$(WORKDIR)/%.oir.prg: %.c
2014-11-26 00:38:30 +00:00
$(CL65) -Oir $(CC65FLAGS) $< -o $@
$(SIM65) $(SIM65FLAGS) $@
2014-11-22 16:02:46 +00:00
$(WORKDIR)/%.or.prg: %.c
2014-11-26 00:38:30 +00:00
$(CL65) -Or $(CC65FLAGS) $< -o $@
$(SIM65) $(SIM65FLAGS) $@
2014-11-22 16:02:46 +00:00
clean:
@$(call DEL,$(TESTS))
@$(call DEL,$(SOURCES:.c=.o))