13 lines
No EOL
126 B
Makefile
13 lines
No EOL
126 B
Makefile
all: compile
|
|
|
|
compile:
|
|
@ $(REBAR) compile
|
|
|
|
tests:
|
|
@ $(REBAR) ct
|
|
|
|
clean:
|
|
@ $(REBAR) clean
|
|
@ rm -rf ./logs
|
|
|
|
include rebar.mk |