Date: Tue, 14 Apr 1998 10:27:09 +0300 (IDT) From: Eli Zaretskii To: shor AT jna DOT com DOT au cc: djgpp AT delorie DOT com Subject: Re: Problem with make In-Reply-To: <6guous$mke$1@nnrp1.dejanews.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Precedence: bulk On Mon, 13 Apr 1998 shor AT jna DOT com DOT au wrote: > Here is the error. > [95]D:\DEV\C>make hello.exe > make.exe: *** No rule to make target `hello.exe'. Stop. The problem is that your directory is called C:\DEV. This name is special (DOS creates an illusion that all the character devices live in that directory). Rename C:\DEV into something else, and things will begin working. For example: C:\> ren dev devel C:\> cd devel\c C:\DEVEL\C> make