forked from tz1/sparkfun
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
39 lines (31 loc) · 637 Bytes
/
Copy pathMakefile
File metadata and controls
39 lines (31 loc) · 637 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
all: fat32lib booter dcimmer fat32cli hyperlog i2cperiph sramlog
make -C fat32lib
make -C booter
make -C dcimmer
make -C fat32cli
make -C hyperlog
make -C i2cperiph
make -C sramlog
fat32lib:
make -C fat32lib all
booter:
make -C booter
dcimmer: fat32lib
make -C dcimmer
fat32cli: fat32lib
make -C fat32cli
hyperlog: fat32lib
make -C hyperlog
i2cperiph: fat32lib
make -C i2cperiph
sramlog: fat32lib
make -C sramlog
clean:
make -C fat32lib clean
make -C booter clean
make -C dcimmer clean
make -C fat32cli clean
make -C hyperlog clean
make -C i2cperiph clean
make -C fat32lib clean
make -C sramlog clean