File: Makefile

package info (click to toggle)
erlang-p1-tls 1.0.26-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 440 kB
  • sloc: ansic: 2,312; erlang: 578; makefile: 30
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