All checks were successful
Build documentation / build-and-deploy (push) Successful in 35s
10 lines
200 B
Makefile
10 lines
200 B
Makefile
apps := init
|
|
|
|
all_apps:
|
|
@for d in $(apps); do make -C $$d platform=$(platform) all; done
|
|
|
|
clean_apps:
|
|
@for d in $(apps); do make -C $$d platform=$(platform) clean; done
|
|
|
|
.PHONY: all_apps clean_apps
|