# ------------------------------------------------------------------------------ # check ルール # ------------------------------------------------------------------------------ .PHONY: check check: @for subdir in $(SUBDIRS); do \ $(MAKE) check -C $$subdir; \ done ifeq ($(strip $(TARGET)),ut.exe) $(MAKE) $(TARGET) ./ut.exe endif