forked from willi-mueller/webmachine-example
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
Latest commit
22 lines (15 loc) · 295 Bytes
/
Copy pathMakefile
File metadata and controls
22 lines (15 loc) · 295 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
ERL ?= erl
APP := prp
.PHONY: deps
all: deps
@./rebar compile
deps:
@./rebar get-deps
clean:
@./rebar clean
distclean: clean
@./rebar delete-deps
docs:
@erl -noshell -run edoc_run application '$(APP)''"."''[]'
testrunner:
$(shell python -m unittest discover test '*_tests.py' -v)