summaryrefslogtreecommitdiff
path: root/make.erl
diff options
context:
space:
mode:
Diffstat (limited to 'make.erl')
-rwxr-xr-xmake.erl18
1 files changed, 0 insertions, 18 deletions
diff --git a/make.erl b/make.erl
deleted file mode 100755
index 4ebdf74..0000000
--- a/make.erl
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/usr/bin/env escript
-%% -*- erlang -*-
-
-main(_) ->
- LagerPath = "../lager/ebin",
- case code:add_path(LagerPath) of
- true ->
- ok;
- {error, bad_directory} ->
- io:format("Could not add path ~p~n", [LagerPath]),
- halt(1)
- end,
- case make:all() of
- up_to_date ->
- ok;
- error ->
- halt(1)
- end.