diff options
author | Eric <[email protected]> | 2012-09-04 16:22:42 -0500 |
---|---|---|
committer | Eric <[email protected]> | 2012-09-04 16:22:42 -0500 |
commit | fd4bbcdfc6b268629c4121570a619915d420fa2e (patch) | |
tree | 7f6cedbc722ed134b8b728436b8baeb87e8a4fe8 | |
parent | 8b1ffe26eca04a08ba53a10442e6c7a720cbbd7a (diff) | |
download | relx-fd4bbcdfc6b268629c4121570a619915d420fa2e.tar.gz relx-fd4bbcdfc6b268629c4121570a619915d420fa2e.tar.bz2 relx-fd4bbcdfc6b268629c4121570a619915d420fa2e.zip |
bug fixes and extentions to the project makefile
-rw-r--r-- | Makefile | 15 |
1 files changed, 9 insertions, 6 deletions
@@ -1,4 +1,4 @@ -# Copyright 2012 Opscode, Inc. All Rights Reserved. +# Copyright 2012 Erlware, LLC. All Rights Reserved. # # This file is provided to you under the Apache License, # Version 2.0 (the "License"); you may not use this file @@ -16,7 +16,7 @@ # ERL = $(shell which erl) -ERLFLAGS= -pa $(CURDIR)/.eunit -pa $(CURDIR)/ebin -pa $(CURDIR)/*/ebin +ERLFLAGS= -pa $(CURDIR)/.eunit -pa $(CURDIR)/ebin -pa $(CURDIR)/deps/**/ebin REBAR=$(shell which rebar) @@ -26,7 +26,7 @@ endif RELCOOL_PLT=$(CURDIR)/.relcool_plt -.PHONY: all compile doc clean eunit dialyzer typer shell distclean pdf get-deps +.PHONY: all compile doc clean eunit dialyzer typer shell distclean pdf get-deps escript all: compile eunit dialyzer @@ -37,8 +37,11 @@ get-deps: compile: $(REBAR) skip_deps=true compile +escript: + $(REBAR) escriptize + doc: - $(REBAR) doc + $(REBAR) skip_deps=true doc eunit: compile $(REBAR) skip_deps=true eunit @@ -55,13 +58,13 @@ dialyzer: $(RELCOOL_PLT) typer: typer --plt $(RELCOOL_PLT) -r ./src -shell: compile +shell: get-deps compile # You often want *rebuilt* rebar tests to be available to the # shell you have to call eunit (to get the tests # rebuilt). However, eunit runs the tests, which probably # fails (thats probably why You want them in the shell). This # runs eunit but tells make to ignore the result. - - @$(REBAR) eunit + - @$(REBAR) skip_deps=true eunit @$(ERL) $(ERLFLAGS) pdf: |