I did take out the extra line. I get an error: make: *** No rule to make target `(cd', needed by `all'. Stop.
russ On Jan 9, 2008 9:23 AM, Dave Korn <[EMAIL PROTECTED]> wrote: > On 09 January 2008 02:31, Russell King wrote: > > > Trying to do make on the app is failing. Tabs for make files are good. > I > > am getting the following errors: > > > > Makefile:23: *** missing separator. Stop. > > > > This happens right after the line: > > > > all: > > > > (cd src;$(MAKE)) > > > > in ./Makefile. > > You left a blank line between the target and the rules. That acts as a > separator, so make doesn't know your command line is part of the rule; it > thinks it's an entirely new top-level structure, and issues its generic > i-can't-parse-this error message. Delete the blank line and you should be > ok. > > > > cheers, > DaveK > -- > Can't think of a witty .sigline today.... > >
_______________________________________________ Help-make mailing list [email protected] http://lists.gnu.org/mailman/listinfo/help-make
