From: G DOT DegliEsposti AT ads DOT it To: "Trond Erik Bones" cc: djgpp AT delorie DOT com Message-ID: Date: Thu, 5 Feb 1998 15:10:41 +0100 Subject: Re: Trouble with makefile ! Mime-Version: 1.0 Content-type: text/plain; charset=us-ascii Precedence: bulk >I am trying to compile a program with DJGPP GCC in windows95, but can't >understand an error. >The makefile(attached) just cd's into every sub-dir and builds the stuff >thats there. > >I get the following error message : > >(cd laba_util ; make) >Bad command or filename It seems like the makefile was made to run on a Unix system: DOS (and win95) doesn't recognize the subshell "( )" construct like unix shells do. I think command.com doesn't even recognize a command separator ";" so you have to split the command into many lines. try if this helps: target: files (cd laba_util; make) changed into: target: files cd laba_util \ make ciao Giacomo