Root/lua/examples/Makefile

1DIRS = lua_blink_led lua_calls_C1 lua_calls_C2 lua_calls_C3 lua_calls_C5
2all:
3    for n in $(DIRS); do $(MAKE) -C $$n || exit 1; done
4
5upload:
6    for n in $(DIRS); do $(MAKE) -C $$n upload || exit 1; done
7
8clean:
9    for n in $(DIRS); do $(MAKE) -C $$n clean || exit 1; done
10
11

Archive Download this file

Branches:
master



interactive