summaryrefslogtreecommitdiff
path: root/Makefile.shared
diff options
context:
space:
mode:
authorDarin Adler <darin@src.gnome.org>2000-10-23 22:21:12 +0000
committerDarin Adler <darin@src.gnome.org>2000-10-23 22:21:12 +0000
commit04c0896f059a9d419236bc009dc940d7411ab579 (patch)
treea0b03d59fa041c3a448f4df842635d148a08cfbf /Makefile.shared
parent9a6d8bcaa41cacd1e10dd5e7c7a57df2a7cb154e (diff)
downloadnautilus-04c0896f059a9d419236bc009dc940d7411ab579.tar.gz
Fix extra dependency that was causing the xml.h files to be generated too
* Makefile.shared: Fix extra dependency that was causing the xml.h files to be generated too often. * configure.in: Fix code that detects the gcc options to work even with -O on. * src/nautilus-view-frame.h: * src/nautilus-view-frame.c: (nautilus_view_frame_initialize_class), (view_frame_loaded), (view_frame_failed), (nautilus_view_frame_handle_client_destroy), (nautilus_view_frame_handle_client_gone), (nautilus_view_frame_new), (check_if_view_is_gone), (nautilus_view_frame_set_to_component), (nautilus_view_frame_get_is_underway): Revamp set of signals to be easier to understand. Handle all failures uniformly, * src/nautilus-window-manage-views.h: * src/nautilus-window-manage-views.c: (change_selection), (nautilus_window_update_for_new_location), (nautilus_window_has_really_changed), (nautilus_window_set_state_info), (nautilus_window_set_sidebar_panels), (zoom_level_changed_callback), (get_history_list_callback), (change_selection_callback), (change_status_callback), (failed_callback), (load_underway_callback), (load_complete_callback), (open_location_callback), (open_location_in_new_window_callback), (title_changed_callback), (nautilus_window_connect_view), (nautilus_window_disconnect_view): Make more of the view management private to this file. Use the signals by their new names. Disconnect all the signals, not just the error-related ones. * src/nautilus-window.c: (nautilus_window_set_content_view_widget): Updated the debugging check to do it with the new Bonobo UI calls.
Diffstat (limited to 'Makefile.shared')
-rw-r--r--Makefile.shared4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.shared b/Makefile.shared
index b391438ba..ed20e0c12 100644
--- a/Makefile.shared
+++ b/Makefile.shared
@@ -1,4 +1,4 @@
NULL =
-%.xml.h: $(BONOBO_UI_EXTRACT) %.xml
- $^ > $@
+%.xml.h: %.xml
+ $(BONOBO_UI_EXTRACT) $^ > $@