0
Fork 0
mirror of https://github.com/ninenines/cowboy.git synced 2025-07-14 12:20:24 +00:00
cowboy/Makefile
Hans Ulrich Niedermann 07413113d5 Makefile: Use a REBAR variable
Using a REBAR variable makes it easy for the user to override
the REBAR to be called.
2011-03-23 10:54:09 +01:00

15 lines
164 B
Makefile

# See LICENSE for licensing information.
REBAR = ./rebar
all: app
app:
@$(REBAR) compile
clean:
@$(REBAR) clean
rm -f erl_crash.dump
test:
@$(REBAR) eunit