aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/chunked_hello_world/Makefile2
-rw-r--r--examples/compress_response/Makefile2
-rw-r--r--examples/cookie/Makefile2
-rw-r--r--examples/echo_get/Makefile2
-rw-r--r--examples/echo_post/Makefile2
-rw-r--r--examples/eventsource/Makefile2
-rw-r--r--examples/file_server/Makefile2
-rw-r--r--examples/hello_world/Makefile2
-rw-r--r--examples/markdown_middleware/Makefile2
-rw-r--r--examples/rest_basic_auth/Makefile2
-rw-r--r--examples/rest_hello_world/Makefile2
-rw-r--r--examples/rest_pastebin/Makefile2
-rw-r--r--examples/ssl_hello_world/Makefile2
-rw-r--r--examples/upload/Makefile2
-rw-r--r--examples/websocket/Makefile2
15 files changed, 30 insertions, 0 deletions
diff --git a/examples/chunked_hello_world/Makefile b/examples/chunked_hello_world/Makefile
index 7e14a82..e168cf8 100644
--- a/examples/chunked_hello_world/Makefile
+++ b/examples/chunked_hello_world/Makefile
@@ -5,4 +5,6 @@ PROJECT_VERSION = 1
DEPS = cowboy
dep_cowboy_commit = master
+REL_DEPS = relx
+
include ../../erlang.mk
diff --git a/examples/compress_response/Makefile b/examples/compress_response/Makefile
index 8eab604..a798d8c 100644
--- a/examples/compress_response/Makefile
+++ b/examples/compress_response/Makefile
@@ -5,4 +5,6 @@ PROJECT_VERSION = 1
DEPS = cowboy
dep_cowboy_commit = master
+REL_DEPS = relx
+
include ../../erlang.mk
diff --git a/examples/cookie/Makefile b/examples/cookie/Makefile
index 563cd87..4ed1a37 100644
--- a/examples/cookie/Makefile
+++ b/examples/cookie/Makefile
@@ -5,4 +5,6 @@ PROJECT_VERSION = 1
DEPS = cowboy erlydtl
dep_cowboy_commit = master
+REL_DEPS = relx
+
include ../../erlang.mk
diff --git a/examples/echo_get/Makefile b/examples/echo_get/Makefile
index 6332d4b..7be52c2 100644
--- a/examples/echo_get/Makefile
+++ b/examples/echo_get/Makefile
@@ -5,4 +5,6 @@ PROJECT_VERSION = 1
DEPS = cowboy
dep_cowboy_commit = master
+REL_DEPS = relx
+
include ../../erlang.mk
diff --git a/examples/echo_post/Makefile b/examples/echo_post/Makefile
index c1d64fe..86e5cd2 100644
--- a/examples/echo_post/Makefile
+++ b/examples/echo_post/Makefile
@@ -5,4 +5,6 @@ PROJECT_VERSION = 1
DEPS = cowboy
dep_cowboy_commit = master
+REL_DEPS = relx
+
include ../../erlang.mk
diff --git a/examples/eventsource/Makefile b/examples/eventsource/Makefile
index 1b67b8e..636337a 100644
--- a/examples/eventsource/Makefile
+++ b/examples/eventsource/Makefile
@@ -5,4 +5,6 @@ PROJECT_VERSION = 1
DEPS = cowboy
dep_cowboy_commit = master
+REL_DEPS = relx
+
include ../../erlang.mk
diff --git a/examples/file_server/Makefile b/examples/file_server/Makefile
index 7efa6ef..df8f311 100644
--- a/examples/file_server/Makefile
+++ b/examples/file_server/Makefile
@@ -5,4 +5,6 @@ PROJECT_VERSION = 1
DEPS = cowboy jsx
dep_cowboy_commit = master
+REL_DEPS = relx
+
include ../../erlang.mk
diff --git a/examples/hello_world/Makefile b/examples/hello_world/Makefile
index c410b09..a56432a 100644
--- a/examples/hello_world/Makefile
+++ b/examples/hello_world/Makefile
@@ -5,4 +5,6 @@ PROJECT_VERSION = 1
DEPS = cowboy
dep_cowboy_commit = master
+REL_DEPS = relx
+
include ../../erlang.mk
diff --git a/examples/markdown_middleware/Makefile b/examples/markdown_middleware/Makefile
index ccbd3c2..8371ff7 100644
--- a/examples/markdown_middleware/Makefile
+++ b/examples/markdown_middleware/Makefile
@@ -5,4 +5,6 @@ PROJECT_VERSION = 1
DEPS = cowboy
dep_cowboy_commit = master
+REL_DEPS = relx
+
include ../../erlang.mk
diff --git a/examples/rest_basic_auth/Makefile b/examples/rest_basic_auth/Makefile
index dc7bd5c..dab6aea 100644
--- a/examples/rest_basic_auth/Makefile
+++ b/examples/rest_basic_auth/Makefile
@@ -5,4 +5,6 @@ PROJECT_VERSION = 1
DEPS = cowboy
dep_cowboy_commit = master
+REL_DEPS = relx
+
include ../../erlang.mk
diff --git a/examples/rest_hello_world/Makefile b/examples/rest_hello_world/Makefile
index 3452a44..cb20651 100644
--- a/examples/rest_hello_world/Makefile
+++ b/examples/rest_hello_world/Makefile
@@ -5,4 +5,6 @@ PROJECT_VERSION = 1
DEPS = cowboy
dep_cowboy_commit = master
+REL_DEPS = relx
+
include ../../erlang.mk
diff --git a/examples/rest_pastebin/Makefile b/examples/rest_pastebin/Makefile
index 994f4a4..16d348f 100644
--- a/examples/rest_pastebin/Makefile
+++ b/examples/rest_pastebin/Makefile
@@ -5,4 +5,6 @@ PROJECT_VERSION = 1
DEPS = cowboy
dep_cowboy_commit = master
+REL_DEPS = relx
+
include ../../erlang.mk
diff --git a/examples/ssl_hello_world/Makefile b/examples/ssl_hello_world/Makefile
index 47676a9..be51964 100644
--- a/examples/ssl_hello_world/Makefile
+++ b/examples/ssl_hello_world/Makefile
@@ -6,4 +6,6 @@ DEPS = cowboy
LOCAL_DEPS = ssl
dep_cowboy_commit = master
+REL_DEPS = relx
+
include ../../erlang.mk
diff --git a/examples/upload/Makefile b/examples/upload/Makefile
index af39f92..939d148 100644
--- a/examples/upload/Makefile
+++ b/examples/upload/Makefile
@@ -5,4 +5,6 @@ PROJECT_VERSION = 1
DEPS = cowboy
dep_cowboy_commit = master
+REL_DEPS = relx
+
include ../../erlang.mk
diff --git a/examples/websocket/Makefile b/examples/websocket/Makefile
index 955cd52..b8cada8 100644
--- a/examples/websocket/Makefile
+++ b/examples/websocket/Makefile
@@ -5,4 +5,6 @@ PROJECT_VERSION = 1
DEPS = cowboy
dep_cowboy_commit = master
+REL_DEPS = relx
+
include ../../erlang.mk