Root/plasma/Makefile

1TARGET = bootldr
2DIRS = tools bootldr logic gpio
3
4all:
5    for n in $(DIRS); do $(MAKE) -C $$n || exit 1; done
6
7tool:
8    make -C tools
9
10logic:
11    make -C logic
12
13bootldr: tool
14    make -C bootldr
15
16clean:
17    for n in $(DIRS); do $(MAKE) -C $$n clean || exit 1; done
18

Archive Download this file

Branches:
master



interactive