14 lines
315 B
Makefile
14 lines
315 B
Makefile
|
help:
|
||
|
@echo Possible targets: init giti
|
||
|
|
||
|
init:
|
||
|
@python3 __scripts__/init.py
|
||
|
|
||
|
giti:
|
||
|
@make --no-print-directory -C applications $@
|
||
|
@make --no-print-directory -C embedded_linux $@
|
||
|
@make --no-print-directory -C linux_env $@
|
||
|
@make --no-print-directory -C python_apps $@
|
||
|
@make --no-print-directory -C unittest $@
|
||
|
|