automake
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Specifying dependencies difficulties


From: Ralf Wildenhues
Subject: Re: Specifying dependencies difficulties
Date: Tue, 17 Jan 2006 14:27:55 +0100
User-agent: Mutt/1.5.11

Hi Angus,

* Angus Leeming wrote on Tue, Jan 17, 2006 at 11:10:01AM CET:
> 
> Making all in qdvi
> make[2]: Entering directory
> `/home/angus/qdvi/trunk/build/qdvi-4.0cvs/_build/qdvi'
> if cmp -s version.cpp-tmp version.cpp ; then \
>         : ;\
> else \
>         rm -f version.cpp ;\
>         cp version.cpp-tmp version.cpp ;\
> fi
> echo timestamp > stamp-version
> kdelibs/kconfig_compiler ../../qdvi/kviewshell.kcfg ../../qdvi/kvsprefs.kcfgc
> make[2]: kdelibs/kconfig_compiler: Command not found

Have you ever done a VPATH build?
  mkdir build
  cd build
  ../qdvi/configure [...]
  make

If that fails, start using $(srcdir), $(top_srcdir), $(builddir),
$(top_builddir) to your Makefile.am rules as appropriate.
(There are more variables, but those are the ones you'll need most
likely, I haven't looked at your problem otherwise.)

Once that works, try
  make dist
in there.

Cheers,
Ralf




reply via email to

[Prev in Thread] Current Thread [Next in Thread]