Browse Source

build-all and clean targets in Makefile

Yuriy Zhloba 9 years ago
parent
commit
0d31f9b7c4
1 changed files with 10 additions and 1 deletions
  1. 10 1
      Makefile

+ 10 - 1
Makefile

@@ -1,7 +1,12 @@
-compile:
+build-all:
+	rebar get-deps
 	rebar compile
 
 
+compile:
+	rebar compile skip_deps=true
+
+
 run:
 	erl -pa ebin -pa deps/*/ebin -boot start_sasl -s epgsql_pool_app test_run
 
@@ -12,6 +17,10 @@ tests:
 	rebar ct skip_deps=true
 
 
+clean:
+	rebar clean
+
+
 ct-clean:
 	rm -rf logs/*