~ubuntu-branches/ubuntu/saucy/rabbitmq-server/saucy

« back to all changes in this revision

Viewing changes to plugins-src/webmachine-wrapper/webmachine-git/Makefile

  • Committer: Package Import Robot
  • Author(s): Emile Joubert
  • Date: 2012-09-27 16:28:21 UTC
  • mfrom: (0.2.17) (0.1.31 sid)
  • Revision ID: package-import@ubuntu.com-20120927162821-yzw9w4i6uu4tczu5
Tags: 2.8.7-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
ERL          ?= erl
 
2
APP          := webmachine
 
3
 
 
4
.PHONY: deps
 
5
 
 
6
all: deps
 
7
        @(./rebar compile)
 
8
 
 
9
deps:
 
10
        @(./rebar get-deps)
 
11
 
 
12
clean:
 
13
        @(./rebar clean)
 
14
 
 
15
distclean: clean
 
16
        @(./rebar delete-deps)
 
17
 
 
18
edoc:
 
19
        @$(ERL) -noshell -run edoc_run application '$(APP)' '"."' '[{preprocess, true},{includes, ["."]}]'
 
20
 
 
21
test: all
 
22
        @(./rebar skip_deps=true eunit)
 
23