Re: output directory of generated files

2006-03-28 Thread Thomas Porschberg
Am Tue, 28 Mar 2006 15:36:36 +0200 schrieb Stepan Kasal <[EMAIL PROTECTED]>: > Hello, > > On Thu, Mar 09, 2006 at 02:48:13PM +0100, Thomas Porschberg wrote: > > %.qm: %.ts > > $(PROG1) $< > > > > foo.h: foo.qm > > $(top_srcdir)/utils/PROG2 < $< > $@ > ... > > PROG2 expected foo.q

Re: output directory of generated files

2006-03-28 Thread Stepan Kasal
Hello, On Thu, Mar 09, 2006 at 02:48:13PM +0100, Thomas Porschberg wrote: > %.qm: %.ts > $(PROG1) $< > > foo.h: foo.qm > $(top_srcdir)/utils/PROG2 < $< > $@ ... > PROG2 expected foo.qm now in BUILDDIR/src and not under project/src/. > (surprisingly it worked when I started make a

output directory of generated files

2006-03-09 Thread Thomas Porschberg
Hi, we have the following project structure and a file foo.ts: project/ +--src/foo.ts | | +--utils/PROG2 The goal is 1) to translate foo.ts to foo.qm (with an external program, say PROG1) 2) to create a header file from the created foo.qm (with another helper script PR