diff options
author | Ramiro Estrugo <ramiro@src.gnome.org> | 2001-05-02 12:18:48 +0000 |
---|---|---|
committer | Ramiro Estrugo <ramiro@src.gnome.org> | 2001-05-02 12:18:48 +0000 |
commit | 60b832fdfb671c993754197fabea5e7ee9547a5d (patch) | |
tree | edba3dd7f1b424cd16f89626ca411f4bb25863ac /libnautilus-adapter | |
parent | 6b46bdc9e6b34bf7899f415192bc4b98da70d33b (diff) | |
download | nautilus-60b832fdfb671c993754197fabea5e7ee9547a5d.tar.gz |
Lots of improvement. Make dealing with dependency libs/cflags simpler.
* configure.in:
Lots of improvement. Make dealing with dependency libs/cflags simpler.
* applets/launcher/Makefile.am:
* applets/preferences-applet/Makefile.am:
* components/adapter/Makefile.am:
* components/hardware/Makefile.am:
* components/help/Makefile.am:
* components/history/Makefile.am:
* components/image-viewer/Makefile.am:
* components/loser/content/Makefile.am:
* components/loser/sidebar/Makefile.am:
* components/mozilla/Makefile.am:
* components/music/Makefile.am:
* components/news/Makefile.am:
* components/notes/Makefile.am:
* components/sample/Makefile.am:
* components/text/Makefile.am:
* components/throbber/Makefile.am:
* components/tree/Makefile.am:
* helper-utilities/error-dialog/Makefile.am:
* icons/arlo/throbber/Makefile.am:
* icons/crux_eggplant/backgrounds/Makefile.am:
* icons/crux_eggplant/sidebar_tab_pieces/Makefile.am:
* icons/crux_eggplant/throbber/Makefile.am:
* icons/gnome/throbber/Makefile.am:
* icons/sidebar_tab_pieces/Makefile.am:
* libnautilus-adapter/Makefile.am:
* libnautilus-extensions/Makefile.am:
* libnautilus/Makefile.am:
* src/Makefile.am:
* src/file-manager/Makefile.am:
* test/Makefile.am:
Eliminate cut-n-paste disease by using dependency macros defined
in configure.in.
Diffstat (limited to 'libnautilus-adapter')
-rw-r--r-- | libnautilus-adapter/Makefile.am | 20 |
1 files changed, 7 insertions, 13 deletions
diff --git a/libnautilus-adapter/Makefile.am b/libnautilus-adapter/Makefile.am index 900590012..58fa89647 100644 --- a/libnautilus-adapter/Makefile.am +++ b/libnautilus-adapter/Makefile.am @@ -3,21 +3,15 @@ NULL= lib_LTLIBRARIES=libnautilus-adapter.la -INCLUDES=-I$(top_srcdir) -I$(top_builddir) -I. \ - $(GNOME_CFLAGS) \ - $(BONOBOX_CFLAGS) \ - $(OAF_CFLAGS) \ - $(VFS_CFLAGS) \ - $(XML_CFLAGS) \ - -D_REENTRANT +INCLUDES=\ + -I$(top_srcdir) \ + -I. \ + $(NAUTILUS_PRIVATE_CFLAGS) \ + $(NULL) libnautilus_adapter_la_LDFLAGS= \ - $(GNOME_LIBS) \ - $(OAF_LIBS) \ - $(BONOBOX_LIBS) \ - $(VFS_LIBS) \ - $(XML_LIBS) \ - $(LIBPNG) + $(NAUTILUS_PRIVATE_LIBS) \ + $(NULL) nautilus_adapter_factory_idl_sources = \ |