Re: [fpc-pascal] command and variable substitution in fpcmake

2007-08-02 Thread Marc Santhoff
Am Donnerstag, den 02.08.2007, 09:51 +0200 schrieb Jonas Maebe: > On 02 Aug 2007, at 01:41, Marc Santhoff wrote: > > > Am Mittwoch, den 01.08.2007, 22:21 +0200 schrieb Peter Vreman: > >>> How can I make command execution work? > > ... > >> See the info page of make which functions are available. F

Re: [fpc-pascal] command and variable substitution in fpcmake

2007-08-02 Thread Jonas Maebe
On 02 Aug 2007, at 01:41, Marc Santhoff wrote: Am Mittwoch, den 01.08.2007, 22:21 +0200 schrieb Peter Vreman: How can I make command execution work? ... See the info page of make which functions are available. For shell execution: PWD=$(shell pwd) Ah yes, that does it. Maybe the day will

Re: [fpc-pascal] command and variable substitution in fpcmake

2007-08-01 Thread Marc Santhoff
Am Mittwoch, den 01.08.2007, 22:21 +0200 schrieb Peter Vreman: > >How can I make command execution work? ... > See the info page of make which functions are available. For shell > execution: > > PWD=$(shell pwd) Ah yes, that does it. Maybe the day will come when I like fpcmake. ;) With "info pag

Re: [fpc-pascal] command and variable substitution in fpcmake

2007-08-01 Thread Peter Vreman
At 22:03 1-8-2007, you wrote: Hi, when using Makefiles something like this is executed at runtime, so a variable can be set by a command: PWD=`pwd` or PDW=$(pwd) sets the Varaible $PWD to the current path. If one of both forms is used in a fpcmake-file that doesn't work.

[fpc-pascal] command and variable substitution in fpcmake

2007-08-01 Thread Marc Santhoff
Hi, when using Makefiles something like this is executed at runtime, so a variable can be set by a command: PWD=`pwd` or PDW=$(pwd) sets the Varaible $PWD to the current path. If one of both forms is used in a fpcmake-file that doesn't work. [dist] destdir=`p