Date: Tue, 8 Jul 1997 10:05:21 +0300 (IDT) From: Eli Zaretskii To: Richard Lee cc: djgpp AT delorie DOT com Subject: Re: *** Help me! I can't use "make" command *** In-Reply-To: <33BFCD50.1992437C@icom.ca> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Precedence: bulk On Sun, 6 Jul 1997, Richard Lee wrote: > I am trying to write a makefile to test "make" command. > > Below is my makefile content: > > line1-> test.exe : test.o > line2-> gcc -o test.o After you replace the leading space in line 2 with a TAB (which is why Make complains), you will need to change line 2 to this: gcc -o test.exe test.o And please read the DJGPP FAQ list (available as v2/faq210b.zip from the same place you get DJGPP) before posting here; this problem is explained in section 22.15 there.