File: Makefile

package info (click to toggle)
erlang-poolboy 1.5.2%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 176 kB
  • sloc: erlang: 1,039; makefile: 16
file content (20 lines) | stat: -rw-r--r-- 237 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
REBAR = $(shell command -v rebar3 || echo ./rebar3)

.PHONY: all compile test qc clean

all: compile

compile:
	@$(REBAR) compile

test:
	@$(REBAR) eunit

qc: compile
	@$(REBAR) eqc

clean:
	@$(REBAR) clean

dialyze:
	@$(REBAR) dialyzer