Changeset 1474 for trunk/bindings/java/Makefile.am
- Timestamp:
- 09/05/10 16:30:02 (2 years ago)
- File:
-
- 1 edited
-
trunk/bindings/java/Makefile.am (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/bindings/java/Makefile.am
r1443 r1474 77 77 ncsa/hdf/hdflib/ArrayDescriptor.class 78 78 79 clean-local:80 rm -rf apidoc81 79 82 80 noinst_JAVA = ncsa/hdf/hdflib/HDFArray.java \ … … 93 91 test/TestJapi.java 94 92 95 EXTRA_DIST = $(noinst_JAVA) README.JNEXUS COPYING.NCSA 93 EXTRA_DIST = $(noinst_JAVA) README.JNEXUS COPYING.NCSA 96 94 97 95 # specific targets … … 102 100 $(JAVAH) -jni -d native -classpath . org.nexusformat.NexusFile 103 101 104 jnexus.jar: $(jnexus_jar_CLASS) 102 jnexus.jar: $(jnexus_jar_CLASS) apidoc 105 103 $(JAR) cvf jnexus.jar $(jnexus_jar_CLASS) \ 106 104 ncsa/hdf/hdflib/ArrayDescriptor.class 107 105 108 #all: $(jnexus_jar_ARCHIVE) $(lib_LTLIBRARIES) javadoc109 110 javadoc: $(noinst_JAVA)111 test -d apidoc || mkdir apidoc112 $(JAVADOC) -d apidoc -windowtitle jnexus -doctitle jnexus -classpath . \113 -sourcepath $(srcdir) org.nexusformat ncsa.hdf.hdflib114 106 115 107 SUFFIXES = .java .class … … 118 110 $(JAVAC) -d $(JAVAROOT) $(AM_JAVACFLAGS) $(JAVACFLAGS) $< 119 111 112 apidoc : $(noinst_JAVA) 113 test -d apidoc || mkdir apidoc 114 $(JAVADOC) -d apidoc -windowtitle jnexus -doctitle jnexus -classpath . \ 115 -sourcepath $(srcdir) org.nexusformat ncsa.hdf.hdflib 116 117 dist-hook : 118 if test -d $(srcdir)/apidoc; then \ 119 cp -r $(srcdir)/apidoc $(distdir); \ 120 fi 121 122 install-data-local : 123 $(mkinstalldirs) $(DESTDIR)$(nxjavadocdir) 124 if test -d $(srcdir)/apidoc; then \ 125 cp -r $(srcdir)/apidoc $(DESTDIR)$(nxjavadocdir); \ 126 find $(DESTDIR)$(nxjavadocdir)/apidoc -type f -exec chmod 0644 {} \; ;\ 127 find $(DESTDIR)$(nxjavadocdir)/apidoc -type d -exec chmod 0755 {} \; ;\ 128 fi 129 130 clean-local : 131 rm -rf apidoc 132 133 uninstall-local : 134 rm -fr $(DESTDIR)$(nxjavadocdir)/apidoc 135 136 # 120 137 # Windows import library for DLL 121 138 … … 136 153 endif 137 154 155 138 156 ## include $(top_srcdir)/build_rules.am
Note: See TracChangeset
for help on using the changeset viewer.
