diff --git a/samples/net/sockets/dumb_http_server/Makefile.posix b/samples/net/sockets/dumb_http_server/Makefile.posix new file mode 100644 index 00000000000..54b8416d622 --- /dev/null +++ b/samples/net/sockets/dumb_http_server/Makefile.posix @@ -0,0 +1,7 @@ +# This makefile builds socket_echo sample for POSIX system, like Linux +# +# Before using this Makefile, run Zephyr build process once to generate +# include files. + +socket_dumb_http: src/socket_dumb_http.c + $(CC) $^ -o $@ diff --git a/samples/net/sockets/echo/Makefile.posix b/samples/net/sockets/echo/Makefile.posix new file mode 100644 index 00000000000..7bf5def40dd --- /dev/null +++ b/samples/net/sockets/echo/Makefile.posix @@ -0,0 +1,4 @@ +# This makefile builds socket_echo sample for POSIX system, like Linux + +socket_echo: src/socket_echo.c + $(CC) $^ -o $@ diff --git a/samples/net/sockets/echo_async/Makefile.posix b/samples/net/sockets/echo_async/Makefile.posix new file mode 100644 index 00000000000..a166f75d2c2 --- /dev/null +++ b/samples/net/sockets/echo_async/Makefile.posix @@ -0,0 +1,4 @@ +# This makefile builds sample for POSIX system, like Linux + +socket_echo: src/socket_echo.c + $(CC) $^ -o $@ diff --git a/samples/net/sockets/http_get/Makefile.posix b/samples/net/sockets/http_get/Makefile.posix new file mode 100644 index 00000000000..7f0573c2f70 --- /dev/null +++ b/samples/net/sockets/http_get/Makefile.posix @@ -0,0 +1,4 @@ +# This makefile builds the sample for a POSIX system, like Linux + +http_get: src/http_get.c + $(CC) $^ -o $@