Newer
Older
c-interpreter / mk / test-rule.mk
Nomura Kei on 3 Jun 2023 334 bytes first commit
# ------------------------------------------------------------------------------
#  test ルール
# ------------------------------------------------------------------------------
.PHONY: test
test:
	@for subdir in $(SUBDIRS); do	\
		$(MAKE) test -C $$subdir;	\
	done
ifeq ($(strip $(TARGET)),ut.exe)
	$(MAKE) ut.exe
	./ut.exe
endif