1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 23:29:39 +00:00
cc65/test/Makefile

57 lines
998 B
Makefile
Raw Normal View History

2014-12-17 22:44:39 +00:00
# top-level makefile for the regression tests
# You can comment this special target when you debug the regression tests.
# Then, make will give you more progress reports.
.SILENT:
ifneq ($(shell echo),)
2014-12-17 22:44:39 +00:00
CMD_EXE := 1
endif
ifdef CMD_EXE
2014-11-25 11:56:45 +00:00
EXE := .exe
DEL = -del /f $(subst /,\,$1)
2015-06-26 22:03:45 +00:00
MKDIR = mkdir $(subst /,\,$1)
RMDIR = -rmdir /s /q $(subst /,\,$1)
else
2014-11-25 11:56:45 +00:00
EXE :=
DEL = $(RM) $1
2015-06-26 22:03:45 +00:00
MKDIR = mkdir $1
RMDIR = $(RM) -r $1
endif
2014-11-25 11:56:45 +00:00
WORKDIR := ../testwrk
2015-06-26 22:03:45 +00:00
CC := gcc
.PHONY: all dotests continue mostly-clean clean
all: dotests
2014-11-25 11:56:45 +00:00
$(WORKDIR):
2015-06-26 22:03:45 +00:00
$(call MKDIR,$(WORKDIR))
2014-11-25 11:56:45 +00:00
$(WORKDIR)/bdiff$(EXE): bdiff.c | $(WORKDIR)
$(CC) -O2 -o $@ $<
.NOTPARALLEL:
dotests: mostly-clean continue
2014-11-26 00:38:30 +00:00
continue: $(WORKDIR)/bdiff$(EXE)
@$(MAKE) -C val all
@$(MAKE) -C ref all
@$(MAKE) -C err all
@$(MAKE) -C misc all
mostly-clean:
@$(MAKE) -C val clean
@$(MAKE) -C ref clean
@$(MAKE) -C err clean
2014-11-22 21:22:30 +00:00
@$(MAKE) -C misc clean
clean: mostly-clean
@$(call DEL,$(WORKDIR)/bdiff$(EXE))
@$(call RMDIR,$(WORKDIR))