qdate/Makefile

19 lines
251 B
Makefile
Raw Normal View History

REBAR = $(shell pwd)/rebar3
2015-07-25 20:33:15 +02:00
all: compile
2013-01-14 21:20:36 -06:00
compile:
$(REBAR) compile
test: compile
$(REBAR) eunit
2013-04-23 15:37:27 -05:00
run:
2013-04-23 15:41:49 -05:00
erl -pa ebin/ deps/*/ebin/ -eval "application:start(qdate)"
publish:
$(REBAR) as pkg upgrade
$(REBAR) as pkg hex publish
$(REBAR) upgrade