On Thursday 13 July 2006 14:58, Alexandre Leclerc wrote:
> You won a piece of robot!
Oh man. And I was just two minutes late. ;)
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal
2006/7/13, Jonas Maebe <[EMAIL PROTECTED]>:
On 13 jul 2006, at 16:49, Alexandre Leclerc wrote:
> n the following structure I made two Makefile.fpc:
>
> ./Makefile.fpc
> ./bin/Makefile.fpc
>
> Code of ./Makefile.fpc:
> [target]
> dirs=bin
>
> [rules]
> clean: clean
> $(MAKE) -C bin clean
You h
On Thursday 13 July 2006 14:49, Alexandre Leclerc wrote:
> Now when I execute, I get a problem:
> make clean
> makefile:1341: *** missing separator. Stop.
This is GNUmake. You need chars instead of spaces in your
rule-commands:
> clean: clean
> $(MAKE) -C bin clean
^ about here
Vinzent.
On 13 jul 2006, at 16:49, Alexandre Leclerc wrote:
n the following structure I made two Makefile.fpc:
./Makefile.fpc
./bin/Makefile.fpc
Code of ./Makefile.fpc:
[target]
dirs=bin
[rules]
clean: clean
$(MAKE) -C bin clean
You have to put a tab character in front of the "$(MAKE) .." command.