Re: [fpc-pascal] Trying to make a small makefile with fpcmake

2006-07-13 Thread Vinzent Hoefler
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

Re: [fpc-pascal] Trying to make a small makefile with fpcmake

2006-07-13 Thread Alexandre Leclerc
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

Re: [fpc-pascal] Trying to make a small makefile with fpcmake

2006-07-13 Thread Vinzent Hoefler
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.

Re: [fpc-pascal] Trying to make a small makefile with fpcmake

2006-07-13 Thread Jonas Maebe
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.