File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
tutorials/mqtt/mqtt-client-aws-iot Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -6,9 +6,6 @@ SOURCES = main.c mongoose.c mongoose_fs.c
6
6
7
7
# Mongoose build options. See https://mongoose.ws/documentation/#build-options
8
8
CFLAGS_MONGOOSE += -DMG_ENABLE_PACKED_FS=1
9
- # CFLAGS_MONGOOSE += -DMG_TLS=MG_TLS_BUILTIN
10
- CFLAGS_MONGOOSE += -DMG_TLS=MG_TLS_OPENSSL -lssl -lcrypto -I/opt/homebrew/opt/
[email protected] /include/ -L/opt/homebrew/opt/
[email protected] /lib
11
- # CFLAGS_MONGOOSE += -DMG_TLS=MG_TLS_MBED -lmbedtls -lmbedcrypto -lmbedx509 -I/opt/homebrew/opt/mbedtls/include/ -L/opt/homebrew/opt/mbedtls/lib
12
9
13
10
ifeq ($(OS ) ,Windows_NT) # Windows settings. Assume MinGW compiler. To use VC : make CC=cl CFLAGS=/MD OUT=/Feprog.exe
14
11
PROG ?= example.exe # Use .exe suffix for the binary
@@ -34,3 +31,8 @@ mongoose_fs.c: ca.pem crt.pem key.pem
34
31
35
32
clean :
36
33
$(DELETE ) $(PROG ) * .o * .obj * .exe * .dSYM mbedtls
34
+
35
+ example : FORCE
36
+ touch mongoose_fs.c
37
+
38
+ FORCE :
You can’t perform that action at this time.
0 commit comments