diff options
author | Michael Meeks <michael@ximian.com> | 2001-04-14 16:02:59 +0800 |
---|---|---|
committer | Michael Meeks <michael@src.gnome.org> | 2001-04-14 16:02:59 +0800 |
commit | 04fac44de1b9b0106ef95b6bf6cfc2d877b01fd2 (patch) | |
tree | b5e5eb3fca54a50b8643bfdf7125fef9b272e6dd /calendar | |
parent | a5e6e0b5f3e06eee5726edfe276c5d3c65bb155c (diff) | |
download | gsoc2013-evolution-04fac44de1b9b0106ef95b6bf6cfc2d877b01fd2.tar gsoc2013-evolution-04fac44de1b9b0106ef95b6bf6cfc2d877b01fd2.tar.gz gsoc2013-evolution-04fac44de1b9b0106ef95b6bf6cfc2d877b01fd2.tar.bz2 gsoc2013-evolution-04fac44de1b9b0106ef95b6bf6cfc2d877b01fd2.tar.lz gsoc2013-evolution-04fac44de1b9b0106ef95b6bf6cfc2d877b01fd2.tar.xz gsoc2013-evolution-04fac44de1b9b0106ef95b6bf6cfc2d877b01fd2.tar.zst gsoc2013-evolution-04fac44de1b9b0106ef95b6bf6cfc2d877b01fd2.zip |
Do this everywhere, also fixup CLEANFILES
Do this everywhere, also fixup CLEANFILES
2001-04-14 Michael Meeks <michael@ximian.com>
* Makefile.am (dist-hook): remove built sources from dist.
svn path=/trunk/; revision=9309
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/cal-client/Makefile.am | 3 | ||||
-rw-r--r-- | calendar/gui/Makefile.am | 3 | ||||
-rw-r--r-- | calendar/pcs/Makefile.am | 4 |
3 files changed, 10 insertions, 0 deletions
diff --git a/calendar/cal-client/Makefile.am b/calendar/cal-client/Makefile.am index 28949c8721..1e2438df46 100644 --- a/calendar/cal-client/Makefile.am +++ b/calendar/cal-client/Makefile.am @@ -82,3 +82,6 @@ client_test_LDADD = \ BUILT_SOURCES = $(CORBA_GENERATED) CLEANFILES += $(BUILT_SOURCES) + +dist-hook: + cd $(distdir); rm -f $(BUILT_SOURCES) diff --git a/calendar/gui/Makefile.am b/calendar/gui/Makefile.am index 20e5b35b24..8e30ee2c23 100644 --- a/calendar/gui/Makefile.am +++ b/calendar/gui/Makefile.am @@ -157,3 +157,6 @@ endif BUILT_SOURCES = $(IDL_GENERATED) CLEANFILES += $(BUILT_SOURCES) + +dist-hook: + cd $(distdir); rm -f $(BUILT_SOURCES) diff --git a/calendar/pcs/Makefile.am b/calendar/pcs/Makefile.am index 18156b4881..0719a5e566 100644 --- a/calendar/pcs/Makefile.am +++ b/calendar/pcs/Makefile.am @@ -42,3 +42,7 @@ libpcs_a_SOURCES = \ BUILT_SOURCES = $(CORBA_GENERATED) CLEANFILES += $(BUILT_SOURCES) + +dist-hook: + cd $(distdir); rm -f $(BUILT_SOURCES) + |