The old Makefiles which can be used to build this samples directly as Linux apps and the description in the READMEs could be quite missleading. Building this apps in this way has nothing to do with the Zephyr native_posix/sim targets. This is about building them as actual Linux applications without Zephyr or any HW models. So let's rename the Makefiles and change the description in the docs to avoid confusion. Signed-off-by: Alberto Escolar Piedras <alberto.escolar.piedras@nordicsemi.no>
7 lines
245 B
Makefile
7 lines
245 B
Makefile
# This makefile builds the sample for a POSIX system, like Linux
|
|
# It required mbedTLS to be installed on the system, e.g.
|
|
# libmbedtls-dev package on Debian/Ubuntu Linux.
|
|
|
|
big_http_download: src/big_http_download.c
|
|
$(CC) $^ -lmbedcrypto -o $@
|