diff options
author | Darin Adler <darin@src.gnome.org> | 2001-10-28 20:21:52 +0000 |
---|---|---|
committer | Darin Adler <darin@src.gnome.org> | 2001-10-28 20:21:52 +0000 |
commit | 5abcc1995419a91bebe2e42a5218a374e36533c3 (patch) | |
tree | 2f6c9699dc992039a973b0bd058aebfa2d820669 /libnautilus-adapter | |
parent | b36a91ca55636af4137615a88c6e70a6dffe7802 (diff) | |
download | nautilus-5abcc1995419a91bebe2e42a5218a374e36533c3.tar.gz |
More GNOME 2 work. We now compile up to libnautilus-private and I'm
* Lots of files:
More GNOME 2 work. We now compile up to libnautilus-private and
I'm working my way through the files in there. Also changed all
the initialize_class and initialize to class_init and init.
Diffstat (limited to 'libnautilus-adapter')
-rw-r--r-- | libnautilus-adapter/Makefile.am | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/libnautilus-adapter/Makefile.am b/libnautilus-adapter/Makefile.am index b8bf85eeb..2d628f018 100644 --- a/libnautilus-adapter/Makefile.am +++ b/libnautilus-adapter/Makefile.am @@ -5,7 +5,7 @@ lib_LTLIBRARIES=libnautilus-adapter.la INCLUDES=\ -I$(top_srcdir) \ - $(NAUTILUS_PRIVATE_CFLAGS) \ + $(LIBNAUTILUS_ADAPTER_CFLAGS) \ $(NULL) libnautilus_adapter_la_LDFLAGS= \ @@ -30,8 +30,8 @@ libnautilus_adapter_la_SOURCES = \ $(nautilus_adapter_factory_idl_sources): nautilus_adapter_factory_idl_stamp nautilus_adapter_factory_idl_stamp: nautilus-adapter-factory.idl - $(ORBIT_IDL) $(IDL_CFLAGS) $(srcdir)/nautilus-adapter-factory.idl - touch nautilus_adapter_factory_idl_stamp + $(ORBIT_IDL) -I$(top_srcdir) $(LIBNAUTILUS_ADAPTER_IDL_INCLUDES) $< + touch $@ CLEANFILES = \ @@ -43,3 +43,4 @@ EXTRA_DIST = \ dist-hook: cd $(distdir); rm -f $(CLEANFILES) + |