blob: 36ef8ed09ae6146e4c9fd59023ad3b0067610f46 (
plain)
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
|
# Directories common to all architectures.
# Build in order:
# - critical libraries used by the limbo compiler
# - the limbo compiler (used to build some subsequent libraries)
# - the remaining libraries
# - commands
# - utilities
<$ROOT/mkconfig
LIB=libiot.a
OFILES=\
CFLAGS=\
$CFLAGS\
-Iinclude\
#<pthread/mkfile
<freertos/mkfile
<sys/mkfile
<hal/mkfile
<spiffs/mkfile
<vfs/mkfile
<$ROOT/mkfiles/mksyslib-$SHELLTYPE
%.$O: %.c
$CC $CFLAGS -o $target $stem.c
|