1
1

Install Java API docs into $(docdir)

Fixes trac:4054

cmr=v1.7.5:reviewer=osvegis

This commit was SVN r30531.

The following Trac tickets were found above:
  Ticket 4054 --> https://svn.open-mpi.org/trac/ompi/ticket/4054
Этот коммит содержится в:
Jeff Squyres 2014-02-03 16:10:08 +00:00
родитель 7e5031374e
Коммит 6ca8e68e4b

Просмотреть файл

@ -1,6 +1,6 @@
# -*- makefile -*-
#
# Copyright (c) 2011 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2011-2014 Cisco Systems, Inc. All rights reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
@ -151,8 +151,24 @@ java_DATA = mpi.jar
BUILT_SOURCES = $(JAVA_H)
# Convenience for building Javadoc docs
jdoc:
jdoc: doc
# Make the "doc" target (and subdir) dependent upon mpi.jar; if
# mpi.jar is ever rebuilt, then also make the docs eligible to be
# rebuilt.
doc: mpi.jar
javadoc -d doc $(srcdir)/*.java
@touch doc
jdoc-install: jdoc
-$(MKDIR_P) $(docdir)/javadoc
cp -rp doc/* $(docdir)/javadoc
jdoc-uninstall:
-rm -rf $(docdir)/javadoc
install-data-hook: jdoc-install
uninstall-local: jdoc-uninstall
# Clean up all the things that this Makefile.am generates. The
# generated .class files are all within the "mpi" subdirectory.