diff options
author | Thomas Fitzsimmons <fitzsim@redhat.com> | 2006-05-09 18:11:12 +0000 |
---|---|---|
committer | Thomas Fitzsimmons <fitzsim@redhat.com> | 2006-05-09 18:11:12 +0000 |
commit | 60e1fc7d605ea7c8cdc8c97630c103ccd025ff52 (patch) | |
tree | cdf5d54138fad5fd0e6c9ca65b34e60f9699bb33 /native/Makefile.am | |
parent | 24a32787e38a8198e51d65177b21714e81e0de45 (diff) | |
download | classpath-60e1fc7d605ea7c8cdc8c97630c103ccd025ff52.tar.gz |
2006-05-09 Thomas Fitzsimmons <fitzsim@redhat.com>
* configure.ac: Add --disable-plugin and --with-vm options. Check
for plugin support headers and libraries.
* native/Makefile.am: Recurse into plugin directory.
* native/plugin/.cvsignore: New file.
* native/plugin/Makefile.am: New file.
* native/plugin/gcjwebplugin.cc: New file.
* tools/Makefile.am: Install appletviewer wrapper script.
* tools/appletviewer.in: Replace VM location heuristic with
VM_BINARY configure substitution.
Diffstat (limited to 'native/Makefile.am')
-rw-r--r-- | native/Makefile.am | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/native/Makefile.am b/native/Makefile.am index 4fa593e03..25aa364d1 100644 --- a/native/Makefile.am +++ b/native/Makefile.am @@ -8,6 +8,10 @@ if CREATE_GTK_PEER_LIBRARIES JAWTDIR = jawt endif -SUBDIRS = fdlibm $(JNIDIR) $(JAWTDIR) target -DIST_SUBDIRS = fdlibm jni jawt target +if CREATE_PLUGIN + PLUGINDIR = plugin +endif + +SUBDIRS = fdlibm $(JNIDIR) $(JAWTDIR) $(PLUGINDIR) target +DIST_SUBDIRS = fdlibm jni jawt plugin target |