Skip to content

Commit ecf5fd6

Browse files
committed
Fixed generation of cert.pem and key.pem header files
1 parent ddcf7fc commit ecf5fd6

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

Diff for: .gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,6 @@ main/fontttf.h
4141
main/fonteot.h
4242
main/indexhtml.h
4343
main/wavdata.h
44-
sdkconfig.old
44+
sdkconfig.old
45+
main/keypem.h
46+
main/certpem.h

Diff for: Makefile

+10
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ all: main/fonteot.h
1717

1818
all: main/fontwoff.h
1919

20+
all: main/certpem.h
21+
22+
all: main/keypem.h
23+
2024
main/indexhtml.h: data/index.html
2125
python data2h.py data/index.html main/indexhtml.h
2226

@@ -32,6 +36,12 @@ main/fontsvg.h: data/material-design-icons.svg
3236
main/fonteot.h: data/material-design-icons.eot
3337
python data2h.py data/material-design-icons.eot main/fonteot.h
3438

39+
main/certpem.h: data/cert.pem
40+
python data2h.py data/cert.pem main/certpem.h
41+
42+
main/keypem.h: data/key.pem
43+
python data2h.py data/key.pem main/keypem.h
44+
3545

3646
include $(IDF_PATH)/make/project.mk
3747

0 commit comments

Comments
 (0)