Date: Thu, 6 May 1999 10:04:35 +0300 (IDT) From: Eli Zaretskii X-Sender: eliz AT is To: Jason Salmans cc: djgpp AT delorie DOT com Subject: Re: Newbie needs help with make In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Wed, 5 May 1999, Jason Salmans wrote: > >> include target/common > > > >This requires the directory `target' be present and several files inside > >it. Do you indeed have such a directory? > > Yes I do have a target directory and the file "common" is in it. Did you invoke `make' from the same directory which has `target' as its subdirectory? That's what the Makefile expects. If you did that already, invoke `make' like this: make -d > make.log and then look at the file `make.log' that is created by this command. `make' puts there a lot of information about what it does and what it thinks. Perhaps you can understand what happens using that information.