Date: Mon, 24 Feb 1997 17:28:38 +0200 (IST) From: Eli Zaretskii To: Cesar Scarpini Rabak cc: George Foot , djgpp AT delorie DOT com Subject: Re: makefile help In-Reply-To: <1.5.4.16.19970224122356.37ef0136@dmeasc.rc.ipt.br> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII On Mon, 24 Feb 1997, Cesar Scarpini Rabak wrote: > > all: foo > ^^^^ <- This way we generate a foo _and_ foo.exe! OTOH, GNU > make doesn't make foo.exe if one puts in the all line just foo.exe! This was done on purpose: the built-in rules of Make don't know how to build foo.exe. It doesn't hurt anything (except disk space) to have both foo and foo.exe, but you do gain all the support Make can give you.