Files
cc65/test/asm/Makefile
Spiro Trikaliotis 388ae87cb3 Reorganized test/asm
2022-02-19 12:44:20 +01:00

35 lines
524 B
Makefile

# top-level Makefile for the regression tests
ifneq ($(shell echo),)
CMD_EXE = 1
endif
ifdef CMD_EXE
RMDIR = -rmdir /s /q $(subst /,\,$1)
else
RMDIR = $(RM) -r $1
endif
WORKDIR = ../testwrk/asm
SUBDIRS = cpudetect opcodes listing
.PHONY: test continue mostlyclean clean
test: mostlyclean continue
define CALL_template
continue::
@$(MAKE) -C $1 all
mostlyclean::
@$(MAKE) -C $1 clean
endef
$(foreach subdir,$(SUBDIRS),$(eval $(call CALL_template,$(subdir))))
clean: mostlyclean
@$(call RMDIR,$(WORKDIR))