minor fixes and enhancements to the makefile
Signed-off-by: Jordan Wilberding <diginux@gmail.com>
This commit is contained in:
parent
4db670c812
commit
67acaaaf3f
1 changed files with 8 additions and 8 deletions
16
Makefile
16
Makefile
|
@ -14,9 +14,9 @@ endif
|
|||
|
||||
ERLWARE_COMMONS_PLT=$(CURDIR)/.erlware_commons_plt
|
||||
|
||||
.PHONY: all compile doc clean eunit dialyzer typer shell distclean pdf get-deps escript
|
||||
.PHONY: all compile doc clean test dialyzer typer shell distclean pdf get-deps escript
|
||||
|
||||
all: compile eunit dialyzer
|
||||
all: compile test dialyzer
|
||||
|
||||
get-deps:
|
||||
$(REBAR) get-deps
|
||||
|
@ -28,7 +28,7 @@ compile:
|
|||
doc: compile
|
||||
$(REBAR) skip_deps=true doc
|
||||
|
||||
eunit: compile
|
||||
test: compile
|
||||
$(REBAR) skip_deps=true eunit
|
||||
|
||||
$(ERLWARE_COMMONS_PLT):
|
||||
|
@ -53,11 +53,11 @@ shell: compile
|
|||
@$(ERL) $(ERLFLAGS)
|
||||
|
||||
clean:
|
||||
$(REBAR) clean
|
||||
rm $(CURDIR)/doc/*.html
|
||||
rm $(CURDIR)/doc/*.css
|
||||
rm $(CURDIR)/doc/*.png
|
||||
rm $(CURDIR)/doc/edoc-info
|
||||
$(REBAR) skip_deps=true clean
|
||||
- rm $(CURDIR)/doc/*.html
|
||||
- rm $(CURDIR)/doc/*.css
|
||||
- rm $(CURDIR)/doc/*.png
|
||||
- rm $(CURDIR)/doc/edoc-info
|
||||
|
||||
distclean: clean
|
||||
rm -rf $(ERLWARE_COMMONS_PLT)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue