I wonder if I can tell automake that a dependency is generated and thus in builddir and not in sourcedir? In my case the generated dependencies look like this:

    $ head -n2 .deps/dynamic.Po 
    dynamic.o: ../../../../tests/examples/manual/dynamic.c \
    ../../../../gst/gst.h /usr/include/glib-2.0/glib.h \

When I run: make -d dynamic I get this (shortened) debug trace:

    Considering target file `dynamic'.
      File `dynamic' does not exist.
        Considering target file `dynamic.o'
          File `dynamic.o' does not exist.
          Looking for an implicit rule for `dynamic.o'.
          Trying pattern rule with stem `dynamic'.
          Trying implicit prerequisite `dynamic.c'.
          Found an implicit rule for `dynamic.o'.
            Considering target file `dynamic.c'.
            No need to remake target `dynamic.c'.
            Considering target file `../../../../tests/examples/manual/dynamic.c'.
            Must remake target `../../../../tests/examples/manual/dynamic.c'.
    make[1]: *** No rule to make target `../../../../tests/examples/manual/dynamic.c', needed by `dynamic.o'.  Stop.

Here is excerpt from Makefile.am:

    BUILT_SOURCES = dynamic.c
    noinst_PROGRAMS = dynamic

    dynamic.c: $(top_srcdir)/docs/manual/advanced-autoplugging.xml
        $(PERL_PATH) $(srcdir)/extract.pl $@ $<

I have tried adding a

    nodist_dynamic_SOURCES = dynamic.c

with no improvement.

To recap, how to tell automake that `../../../../tests/examples/manual/dynamic.c' is not needed and will never be there.

link|improve this question
The .deps/dynamic.Po file is created by the depcomp script (from automake). One can do this manually: gcc pkg-config --cflags --libs glib-2.0 gstreamer-0.10 -MT dynamic.o -MD -MP -MF deps.Po -c dynamic.c This create a working dependency file. – ensonic May 18 '11 at 11:45
Somehow I managed the issue to disappear. The .Po files contained only lines like "# dummy" now and then they got updated and are correct now. – ensonic May 18 '11 at 13:29
feedback

1 Answer

Problem disappeared. If someone else runs into it. Try this: ./config.status --recheck make clean all

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.