mirror of
https://github.com/gcc-mirror/gcc.git
synced 2026-05-06 23:25:24 +02:00
2006-07-06 Thomas Fitzsimmons <fitzsim@redhat.com> * configure.ac (ac_configure_args): Add --with-native-libdir. * configure: Regenerate. * classpath/native/jni/gtk-peer/Makefile.am: Remove GCJ LOCAL sections. * classpath/native/jni/gtk-peer/Makefile.in: Regenerate. * classpath/native/jawt/Makefile.am: Remove GCJ LOCAL sections. * classpath/native/jawt/Makefile.in: Regenerate. * classpath/native/plugin/Makefile.am: Remove GCJ LOCAL sections. * classpath/native/plugin/Makefile.in: Regenerate. From-SVN: r115223
19 lines
546 B
Makefile
19 lines
546 B
Makefile
nativeexeclib_LTLIBRARIES = libgcjwebplugin.la
|
|
|
|
libgcjwebplugin_la_SOURCES = gcjwebplugin.cc
|
|
|
|
libgcjwebplugin_la_CXXFLAGS = \
|
|
-Wall -DAPPLETVIEWER_EXECUTABLE="\"$(bindir)/gappletviewer\"" \
|
|
$(MOZILLA_CFLAGS) $(GLIB_CFLAGS) $(GTK_CFLAGS)
|
|
|
|
libgcjwebplugin_la_LDFLAGS = -avoid-version \
|
|
$(GLIB_LIBS) $(GTK_LIBS) \
|
|
-lstdc++
|
|
|
|
install-plugin: $(nativeexeclib_LTLIBRARIES)
|
|
$(INSTALL) -d -m0755 $(DESTDIR)$(PLUGIN_DIR)
|
|
$(INSTALL) .libs/libgcjwebplugin.so $(DESTDIR)$(PLUGIN_DIR)
|
|
|
|
uninstall-plugin:
|
|
rm -f $(DESTDIR)$(PLUGIN_DIR)/libgcjwebplugin.so
|