getopt/Makefile
Juan Jose Comellas 1566e7d69f Switch to rebar3
2017-11-01 15:55:20 -03:00

25 lines
242 B
Makefile

APPLICATION := getopt
.PHONY: all clean compile dialyzer edoc shell test
all: compile
clean:
@rebar3 clean
compile:
@rebar3 compile
dialyzer: compile
@rebar3 dialyzer
edoc:
@rebar3 edoc
shell:
@rebar3 shell
test:
@rebar3 eunit