aboutsummaryrefslogblamecommitdiffstats
path: root/Makefile
blob: 8ee24b16a0c11298875392bc08e9e2a47a8667c1 (plain) (tree)
1
2
3
4
5
6
7
8
9
10

                                        
             
 


        
                         

      
                       
                         

                            
          
                       
                    


                         
# See LICENSE for licensing information.

REBAR = rebar

all: app

app:
	@$(REBAR) compile

clean:
	@$(REBAR) clean
	rm -f test/*.beam
	rm -f erl_crash.dump

tests: app
	@$(REBAR) eunit
	@$(REBAR) ct

dialyze:
	@$(REBAR) dialyze