File: Makefile

package info (click to toggle)
erlang-p1-tls 1.0.7-2%2Bdeb9u1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 372 kB
  • ctags: 406
  • sloc: ansic: 1,154; erlang: 445; makefile: 29
file content (12 lines) | stat: -rw-r--r-- 114 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
all: src

src:
	rebar get-deps compile

clean:
	rebar clean

test:
	rebar skip_deps=true eunit

.PHONY: clean src