Added generation of JDBC javadoc zip file

git-svn-id: http://svn.osgeo.org/postgis/trunk@2563 b70326c6-7e19-0410-871a-916f4a2858ee
This commit is contained in:
Markus Schaber 2006-12-22 11:28:59 +00:00
parent 5ee948ac3c
commit b0234b236e
3 changed files with 16 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2006-12-22 Markus Schaber <schabi@logix-tt.com>
* java/jdbc/Makefile
Added generation of basic javadoc zip file.
2006-12-20 Sandro Santilli <strk@refractions.net>
* regress/README: wrote info about adding regression tests

2
NEWS
View file

@ -2,7 +2,7 @@ PostGIS 1.2.1
(not published yet)
- JDBC: Fixed JTS handling for multi-dimensional geometries
(thanks to Thomas Marti for hint and partial patch)
Additionally, now JavaDoc is compiled out.
PostGIS 1.2.0
2006/12/08

View file

@ -144,6 +144,7 @@ JTSSRC = $(JTSDIR)/org/postgis/jts/*.java $(JTSDIR)/examples/*.java
# Now the makefile targets that do the work:
# The default target:
all: jar \
postgis-jdbc-javadoc.zip \
offlinetests
# Packing the archives
@ -226,6 +227,7 @@ clean:
echo cleaning...
$(DELETE) $(BUILD) bin stubbin postgis.jar postgis_debug.jar \
compile stubcompile jtscompile $(JTSBUILD) postgis_jts.jar \
javadoc-build postgis-jdbc-javadoc.zip \
$(TESTOUTPUT) \
postgis_$(VERSION).jar \
postgis_debug_$(VERSION).jar \
@ -244,6 +246,14 @@ install: jar installdirs
installdirs:
@mkdir -p $(DESTDIR)
postgis-jdbc-javadoc.zip: javadoc-build
$(JAR) -cf postgis-jdbc-javadoc.zip -C javadoc-build .
javadoc-build: jtscompile compile
$(MKDIR) javadoc-build
javadoc -d javadoc-build -sourcepath src:jtssrc \
org.postgis org.postgis.jts org.postgis.binary org.postgis.java2d examples
# Preliminary JTS support
postgis_jts: postgis_jts.jar jtstestoffline