diff options
author | Nicolas Dufresne <nicolas.dufresne@collabora.co.uk> | 2011-02-23 20:56:42 -0500 |
---|---|---|
committer | Nicolas Dufresne <nicolas.dufresne@collabora.co.uk> | 2011-02-23 20:58:17 -0500 |
commit | b32d667abf49d6615f21658e9ff120bbe556d775 (patch) | |
tree | 3fc48b86f9b878874417b1f2187e659574d664eb /tools | |
parent | bd527949eaf6e284eaff04da9a01f2fdbffe1943 (diff) |
Comment the auto-magic script creation
Nobody seem do know what those target does and they clearly
break distcheck target so I'm commenting it for now.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/Makefile.am | 35 |
1 files changed, 19 insertions, 16 deletions
diff --git a/tools/Makefile.am b/tools/Makefile.am index fd74a22..ab906a0 100644 --- a/tools/Makefile.am +++ b/tools/Makefile.am @@ -26,22 +26,25 @@ EXTRA_DIST = \ CLEANFILES = *.pyc *.pyo -all: $(EXTRA_DIST) +# +# FIXME: The following stuff break makedist +# +#all: $(EXTRA_DIST) -libglibcodegen.py: libtpcodegen.py - test -e $< - $(AM_V_GEN)touch $@ +#libglibcodegen.py: libtpcodegen.py +# test -e $< +# $(AM_V_GEN)touch $@ -glib-ginterface-gen.py glib-gtypes-generator.py glib-interfaces-gen.py \ -glib-signals-marshal-gen.py c-constants-gen.py: %: libglibcodegen.py - test -e $< - $(AM_V_GEN)touch $@ +#glib-ginterface-gen.py glib-gtypes-generator.py glib-interfaces-gen.py \ +#glib-signals-marshal-gen.py c-constants-gen.py: %: libglibcodegen.py +# test -e $< +# $(AM_V_GEN)touch $@ -TELEPATHY_GLIB_SRCDIR = $(top_srcdir)/../telepathy-glib -maintainer-update-from-telepathy-glib: - set -e && cd $(srcdir) && \ - for x in $(EXTRA_DIST); do \ - if test -f $(TELEPATHY_GLIB_SRCDIR)/tools/$$x; then \ - cp $(TELEPATHY_GLIB_SRCDIR)/tools/$$x $$x; \ - fi; \ - done +#TELEPATHY_GLIB_SRCDIR = $(top_srcdir)/../telepathy-glib +#maintainer-update-from-telepathy-glib: +# set -e && cd $(srcdir) && \ +# for x in $(EXTRA_DIST); do \ +# if test -f $(TELEPATHY_GLIB_SRCDIR)/tools/$$x; then \ +# cp $(TELEPATHY_GLIB_SRCDIR)/tools/$$x $$x; \ +# fi; \ +# done |