Renamed some make targets.

This commit is contained in:
Juan Jose Comellas 2009-10-13 18:38:48 -03:00
parent 4c715eaa94
commit e9cf4aff22
2 changed files with 6 additions and 2 deletions

View File

@ -15,10 +15,10 @@ run: all
test: all test: all
@$(ERL) -noshell $(EPATH) -s $(PROJECT)_test test -s init stop @$(ERL) -noshell $(EPATH) -s $(PROJECT)_test test -s init stop
examples: all example: all
@$(ERL) -noshell $(EPATH) -s ex1 test -s init stop @$(ERL) -noshell $(EPATH) -s ex1 test -s init stop
doc: all docs: all
@$(ERL) -noshell $(EPATH) \ @$(ERL) -noshell $(EPATH) \
-eval "edoc:files(filelib:wildcard(\"$(SOURCES)\"), [$(DOC_OPTS)])" \ -eval "edoc:files(filelib:wildcard(\"$(SOURCES)\"), [$(DOC_OPTS)])" \
-s init stop -s init stop

View File

@ -15,7 +15,11 @@ Installation
------------ ------------
To compile the module you simply run 'make'. To compile the module you simply run 'make'.
To run the unit tests run 'make test'. To run the unit tests run 'make test'.
To run the example module run 'make example'.
To build the (very) limited documentation run 'make docs'. To build the (very) limited documentation run 'make docs'.