diff options
-rw-r--r-- | ChangeLog | 10 | ||||
-rw-r--r-- | Makefile.am | 2 | ||||
-rw-r--r-- | configure.ac | 1 | ||||
-rw-r--r-- | idl/.cvsignore | 9 | ||||
-rw-r--r-- | idl/Makefile.am | 2 | ||||
-rw-r--r-- | src/Makefile.am | 2 |
6 files changed, 23 insertions, 3 deletions
@@ -1,5 +1,15 @@ 2004-11-07 Christian Persch <chpe@cvs.gnome.org> + * Makefile.am: + * configure.ac: + A idl/.cvsignore: + A idl/Makefile.am: + * src/Makefile.am: + + Add idl/Makefile.am and move src/Makefile.am's EXTRA_DIST there. + +2004-11-07 Christian Persch <chpe@cvs.gnome.org> + * lib/ephy-gui.c: (ephy_gui_sanitise_popup_position), (ephy_gui_menu_position_tree_selection), (ephy_gui_menu_position_under_widget): diff --git a/Makefile.am b/Makefile.am index 5bc71c8a4..d801cde99 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,6 +1,6 @@ ## Process this file with automake to produce Makefile.in -SUBDIRS = lib embed src data po help doc +SUBDIRS = lib embed idl src data po help doc distcleancheck_listfiles = find . -type f -print | grep -v 'omf\.out' diff --git a/configure.ac b/configure.ac index f06bc973a..a458de625 100644 --- a/configure.ac +++ b/configure.ac @@ -414,6 +414,7 @@ data/art/Makefile data/ui/Makefile doc/Makefile doc/reference/Makefile +idl/Makefile lib/Makefile lib/egg/Makefile lib/widgets/Makefile diff --git a/idl/.cvsignore b/idl/.cvsignore new file mode 100644 index 000000000..4e21436af --- /dev/null +++ b/idl/.cvsignore @@ -0,0 +1,9 @@ +Makefile +Makefile.in +.deps +.libs +*-common.c +*-skels.c +*-stubs.c +*.h +*_idl_stamp diff --git a/idl/Makefile.am b/idl/Makefile.am new file mode 100644 index 000000000..72d3d4fec --- /dev/null +++ b/idl/Makefile.am @@ -0,0 +1,2 @@ +EXTRA_DIST = \ + EphyAutomation.idl diff --git a/src/Makefile.am b/src/Makefile.am index a3c87a061..b2228f960 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -121,7 +121,5 @@ BUILT_SOURCES = $(CORBA_SOURCE) CLEANFILES = $(CORBA_SOURCE) -EXTRA_DIST = $(top_srcdir)/idl/EphyAutomation.idl - dist-hook: cd $(distdir); rm -f $(BUILT_SOURCES) |