summaryrefslogtreecommitdiff
path: root/native/Makefile.am
diff options
context:
space:
mode:
authorBrian Jones <cbj@gnu.org>2002-02-07 14:18:45 +0000
committerBrian Jones <cbj@gnu.org>2002-02-07 14:18:45 +0000
commit1aad0b1cfc1e1f050da299c119b036e4e2e3c02c (patch)
treef78bf0500aad00146550495ed3047dffbfde4500 /native/Makefile.am
parent4f06d9aa596a46a642035a41dc1b8d7820a1b485 (diff)
downloadclasspath-1aad0b1cfc1e1f050da299c119b036e4e2e3c02c.tar.gz
* native/jni/java-lang/Makefile.am: removed empty SUBDIRS
* gnu/classpath/Makefile.am: ditto * native/fdlibm/Makefile.am: ditto * native/jni/java-io/Makefile.am: ditto * native/jni/java-net/Makefile.am: ditto * native/jni/java-util/Makefile.am: ditto * java/io/Makefile.am: removed BlockDataException.java * native/Makefile.am: removed empty SUBDIRS, added option to build cni and jni libraries at the same time (if we actually built cni libraries) * configure.in: added native/cni/Makefile to output
Diffstat (limited to 'native/Makefile.am')
-rw-r--r--native/Makefile.am9
1 files changed, 6 insertions, 3 deletions
diff --git a/native/Makefile.am b/native/Makefile.am
index ff51ecc9d..eb848a03a 100644
--- a/native/Makefile.am
+++ b/native/Makefile.am
@@ -1,13 +1,16 @@
## Input file for automake to generate the Makefile.in used by configure
if CREATE_JNI_LIBRARIES
+
+if CREATE_CNI_LIBRARIES
+sUBDIRS = fdlibm cni jni
+else
SUBDIRS = fdlibm jni
+endif
+
else
if CREATE_CNI_LIBRARIES
SUBDIRS = fdlibm cni
-else
-SUBDIRS =
endif
endif
-