21 lines
353 B
Makefile
21 lines
353 B
Makefile
|
include ../support/include.mk
|
||
|
|
||
|
APPLICATION=erlrrd
|
||
|
DOC_OPTS={dir,\"../doc\"}
|
||
|
|
||
|
all: $(EBIN_FILES)
|
||
|
|
||
|
debug:
|
||
|
$(MAKE) DEBUG=-DDEBUG
|
||
|
|
||
|
clean:
|
||
|
rm -rf $(EBIN_FILES)
|
||
|
|
||
|
edoc:
|
||
|
$(ERL) -noshell -pa ../ebin \
|
||
|
-eval "edoc:application($(APPLICATION), \".\", [$(DOC_OPTS)])" \
|
||
|
-s init stop
|
||
|
|
||
|
test: all
|
||
|
$(ERL) -noshell -pa ../ebin -s $(APPLICATION) test -s init stop
|