myos/make/myos.mk

10 lines
148 B
Makefile
Raw Normal View History

2021-02-09 17:05:00 +01:00
##
2021-05-17 03:40:02 +02:00
# MYOS
2021-02-09 17:05:00 +01:00
2021-06-02 00:54:33 +02:00
# target myos-%: call % target in MYOS folder
2021-05-17 03:40:02 +02:00
.PHONY: myos-%
myos-%: ;
2021-05-31 22:29:12 +02:00
ifeq ($(wildcard $(MYOS)),$(MYOS))
2021-05-17 03:40:02 +02:00
$(call make,$*,$(MYOS))
2021-02-09 17:05:00 +01:00
endif