eclipse plugin: update the makefile to generate the javadoc aswell
This commit is contained in:
parent
a1c06468af
commit
a1c5abdfca
1 changed files with 9 additions and 1 deletions
|
@ -1,5 +1,13 @@
|
|||
makereadme:
|
||||
JAVADOC_BINARY=javadoc
|
||||
JAVADOC_DIR=javadoc
|
||||
JAVADOC_FLAGS=-d $(JAVADOC_DIR) -sourcepath src -public -source 1.6 -use -version -author -splitindex -link http://java.sun.com/javase/6/docs/api/ -subpackages org.wesnoth
|
||||
|
||||
.PHONY: readme, javadoc
|
||||
readme:
|
||||
cd readme; pdflatex README.tex
|
||||
# cleanup non-needed files
|
||||
cd readme; rm README.log; rm README.aux;
|
||||
cd readme; cp README.pdf ..;
|
||||
|
||||
javadoc:
|
||||
$(JAVADOC_BINARY) $(JAVADOC_FLAGS)
|
Loading…
Add table
Reference in a new issue