File: Makefile

package info (click to toggle)
erlang-p1-stringprep 1.0.33-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 652 kB
  • sloc: tcl: 892; cpp: 442; erlang: 328; makefile: 34
file content (15 lines) | stat: -rw-r--r-- 147 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
REBAR ?= rebar

all: src

src:
	$(REBAR) get-deps
	$(REBAR) compile

clean:
	$(REBAR) clean

test: all
	$(REBAR) eunit

.PHONY: clean src test all