10 lines
95 B
Makefile
10 lines
95 B
Makefile
REBAR=rebar3
|
|
|
|
.PHONY: compile
|
|
compile:
|
|
$(REBAR) compile
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
$(REBAR) clean
|