10 lines
148 B
Makefile
10 lines
148 B
Makefile
##
|
|
# MYOS
|
|
|
|
# target myos-%: call % target in MYOS folder
|
|
.PHONY: myos-%
|
|
myos-%: ;
|
|
ifeq ($(wildcard $(MYOS)),$(MYOS))
|
|
$(call make,$*,$(MYOS))
|
|
endif
|