diff options
author | Loïc Hoguin <[email protected]> | 2013-09-08 19:50:31 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2013-09-08 19:50:31 +0200 |
commit | 7a7e144a0d79767f726ca9988a7b8fc752f998ae (patch) | |
tree | ae98a1cd8825841b6b4b134d0e7cf9fdc2945270 /examples/rest_stream_response/Makefile | |
parent | 630a8055412bb9622ca202ffb7008d418df78d5c (diff) | |
download | cowboy-7a7e144a0d79767f726ca9988a7b8fc752f998ae.tar.gz cowboy-7a7e144a0d79767f726ca9988a7b8fc752f998ae.tar.bz2 cowboy-7a7e144a0d79767f726ca9988a7b8fc752f998ae.zip |
Convert the REST streaming example to a release
Diffstat (limited to 'examples/rest_stream_response/Makefile')
-rw-r--r-- | examples/rest_stream_response/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/examples/rest_stream_response/Makefile b/examples/rest_stream_response/Makefile new file mode 100644 index 0000000..dfea603 --- /dev/null +++ b/examples/rest_stream_response/Makefile @@ -0,0 +1,14 @@ +PROJECT = rest_stream_response + +DEPS = cowboy +dep_cowboy = pkg://cowboy master + +.PHONY: release clean-release + +release: clean-release all + relx + +clean-release: + rm -rf _rel + +include ../../erlang.mk |