summaryrefslogtreecommitdiff
path: root/libnautilus
diff options
context:
space:
mode:
authorRamiro Estrugo <ramiro@src.gnome.org>2001-05-02 12:18:48 +0000
committerRamiro Estrugo <ramiro@src.gnome.org>2001-05-02 12:18:48 +0000
commit60b832fdfb671c993754197fabea5e7ee9547a5d (patch)
treeedba3dd7f1b424cd16f89626ca411f4bb25863ac /libnautilus
parent6b46bdc9e6b34bf7899f415192bc4b98da70d33b (diff)
downloadnautilus-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')
-rw-r--r--libnautilus/Makefile.am26
1 files changed, 9 insertions, 17 deletions
diff --git a/libnautilus/Makefile.am b/libnautilus/Makefile.am
index 68b7f57b3..a078092d3 100644
--- a/libnautilus/Makefile.am
+++ b/libnautilus/Makefile.am
@@ -2,25 +2,17 @@ include $(top_srcdir)/Makefile.shared
lib_LTLIBRARIES=libnautilus.la
-INCLUDES=-I$(top_srcdir) -I$(top_builddir) -I. \
- $(GNOME_CFLAGS) \
- $(GTK_CFLAGS) \
- $(EEL_CFLAGS) \
- $(BONOBOX_CFLAGS) \
- $(OAF_CFLAGS) \
- $(VFS_CFLAGS) \
- $(XML_CFLAGS) \
- -DDATADIR=\""$(datadir)"\" \
- -D_REENTRANT
+INCLUDES=\
+ -I$(top_srcdir) \
+ -I$(top_builddir) \
+ -I. \
+ $(NAUTILUS_DEPENDENCY_CFLAGS) \
+ -DDATADIR=\""$(datadir)"\" \
+ $(NULL)
libnautilus_la_LDFLAGS=\
- $(GNOME_LIBS) \
- $(OAF_LIBS) \
- $(BONOBOX_LIBS) \
- $(VFS_LIBS) \
- $(XML_LIBS) \
- $(LIBPNG) \
- $(EEL_LIBS)
+ $(NAUTILUS_DEPENDENCY_LIBS) \
+ $(NULL)
nautilus_view_component_idl_sources = \
nautilus-view-component-stubs.c \