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 /components/hardware | |
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 'components/hardware')
-rw-r--r-- | components/hardware/Makefile.am | 20 |
1 files changed, 4 insertions, 16 deletions
diff --git a/components/hardware/Makefile.am b/components/hardware/Makefile.am index 3c6e401a8..4b0ed4621 100644 --- a/components/hardware/Makefile.am +++ b/components/hardware/Makefile.am @@ -3,17 +3,10 @@ NULL= SUBDIRS=icons INCLUDES = \ - -DPREFIX=\"$(prefix)\" \ -DG_LOG_DOMAIN=\"Nautilus-Hardware\" \ - -I$(top_srcdir) \ - -I$(top_builddir) \ - $(EEL_CFLAGS) \ - $(LIBRSVG_CFLAGS) \ - $(GCONF_CFLAGS) \ - $(VFS_CFLAGS) \ - $(BONOBO_CFLAGS) \ -DGNOMELOCALEDIR=\""$(datadir)/locale"\" \ - $(GNOMEUI_CFLAGS) \ + -I$(top_srcdir) \ + $(NAUTILUS_PRIVATE_CFLAGS) \ $(NULL) oafdir = $(datadir)/oaf @@ -37,13 +30,8 @@ nautilus_hardware_view_SOURCES = \ nautilus_hardware_view_LDADD = \ $(top_builddir)/libnautilus/libnautilus.la \ $(top_builddir)/libnautilus-extensions/libnautilus-extensions.la \ - $(EEL_LIBS) \ - $(LIBRSVG_LIBS) \ - $(BONOBO_LIBS) \ - $(GNOMEUI_LIBS) \ - $(GCONF_LIBS) \ - $(VFS_LIBS) \ - $(GNORBA_LIBS) + $(NAUTILUS_PRIVATE_LIBS) \ + $(NULL) EXTRA_DIST = $(oaf_DATA) $(oaf_in_files) |