Modified for edocs.

This commit is contained in:
Tee Teoh
2008-07-27 01:37:15 -04:00
parent 344bb59b6d
commit ea27483c63
5 changed files with 281 additions and 38 deletions

16
Makefile Normal file
View File

@@ -0,0 +1,16 @@
ERL=erl
all: compile docs
compile:
$(ERL) -make
cd priv && make
clean:
- rm ebin/*.beam
- rm src/*
find . -name "*~" | xargs rm
cd priv && make clean
docs:
$(ERL) -noshell -run edoc_run application "'sqlite'" '"."' '[{title,"Welcome to sqlite"},{hidden,false},{private,false}]' -s erlang halt