diff options
author | Darin Adler <darin@src.gnome.org> | 2001-11-09 01:10:02 +0000 |
---|---|---|
committer | Darin Adler <darin@src.gnome.org> | 2001-11-09 01:10:02 +0000 |
commit | bf4da2da8c5f7f26060fa2958575e54be784dbcd (patch) | |
tree | bfadfd5581e213be0f995c5076f1d07c7ea51574 /libnautilus-adapter | |
parent | 19e8bc4da953cd5914cb675bf4d1ed2a10e815a4 (diff) | |
download | nautilus-bf4da2da8c5f7f26060fa2958575e54be784dbcd.tar.gz |
Just me, not the mailing list.
* MAINTAINERS: Just me, not the mailing list.
* Makefile.am: Enable the components directory.
* components/Makefile.am: Disable all but sample.
* components/*/.cvsignore:
* components/*/*.oaf.in: Removed.
* components/*/*.server.in: Added.
server -> oaf
* components/*/Makefile.am:
Install the servers in the right place.
* configure.in:
* libnautilus-adapter/Makefile.am:
* libnautilus-private/Makefile.am:
* src/Makefile.am:
* src/file-manager/Makefile.am:
Simplified CFLAGS, LIBS, and IDL_INCLUDES.
* components/sample/Makefile.am:
Switch to the new COMPONENT_CFLAGS.
* components/sample/nautilus-sample-content-view.h:
* components/sample/nautilus-sample-content-view.c:
(nautilus_sample_content_view_finalize): Use instead of destroy.
(bonobo_sample_callback): Mark string for localization.
Diffstat (limited to 'libnautilus-adapter')
-rw-r--r-- | libnautilus-adapter/Makefile.am | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/libnautilus-adapter/Makefile.am b/libnautilus-adapter/Makefile.am index 2d628f018..fe836e8ff 100644 --- a/libnautilus-adapter/Makefile.am +++ b/libnautilus-adapter/Makefile.am @@ -5,35 +5,30 @@ lib_LTLIBRARIES=libnautilus-adapter.la INCLUDES=\ -I$(top_srcdir) \ - $(LIBNAUTILUS_ADAPTER_CFLAGS) \ + $(CORE_CFLAGS) \ $(NULL) libnautilus_adapter_la_LDFLAGS= \ $(NULL) - nautilus_adapter_factory_idl_sources = \ nautilus-adapter-factory-stubs.c \ nautilus-adapter-factory-skels.c \ nautilus-adapter-factory.h \ nautilus-adapter-factory-common.c - BUILT_SOURCES = \ $(nautilus_adapter_factory_idl_sources) - libnautilus_adapter_la_SOURCES = \ $(nautilus_adapter_factory_idl_sources) \ $(NULL) - $(nautilus_adapter_factory_idl_sources): nautilus_adapter_factory_idl_stamp -nautilus_adapter_factory_idl_stamp: nautilus-adapter-factory.idl - $(ORBIT_IDL) -I$(top_srcdir) $(LIBNAUTILUS_ADAPTER_IDL_INCLUDES) $< +nautilus_adapter_factory_idl_stamp: nautilus-adapter-factory.idl $(ORBIT_IDL) + $(ORBIT_IDL) -I$(top_srcdir) $(CORE_IDL_INCLUDES) $< touch $@ - CLEANFILES = \ $(nautilus_adapter_factory_idl_sources) \ nautilus_adapter_factory_idl_stamp |