forked from Dynatrace/ufo-esp32
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMakefile
47 lines (28 loc) · 1.02 KB
/
Makefile
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
40
41
42
43
44
45
46
#
# This is a project Makefile. It is assumed the directory this Makefile resides in is a
# project subdirectory.
#
PROJECT_NAME := ufo-esp32
flash: all
all: main/indexhtml.h
all: main/fontttf.h
all: main/fontsvg.h
all: main/fonteot.h
all: main/fontwoff.h
all: main/certpem.h
all: main/keypem.h
main/indexhtml.h: data/index.html
python data2h.py data/index.html main/indexhtml.h
main/fontttf.h: data/material-design-icons.ttf
python data2h.py data/material-design-icons.ttf main/fontttf.h
main/fontwoff.h: data/material-design-icons.woff
python data2h.py data/material-design-icons.woff main/fontwoff.h
main/fontsvg.h: data/material-design-icons.svg
python data2h.py data/material-design-icons.svg main/fontsvg.h
main/fonteot.h: data/material-design-icons.eot
python data2h.py data/material-design-icons.eot main/fonteot.h
main/certpem.h: data/cert.pem
python data2h.py data/cert.pem main/certpem.h
main/keypem.h: data/key.pem
python data2h.py data/key.pem main/keypem.h
include $(IDF_PATH)/make/project.mk