From: kagel AT quasar DOT bloomberg DOT com Date: Wed, 1 May 1996 18:44:30 -0400 Message-Id: <9605012244.AA05018@quasar.bloomberg.com > To: naderr AT topaz DOT cqu DOT edu DOT au Cc: djgpp AT delorie DOT com In-Reply-To: <199604220820.SAA00278@linuxbox.nse.com.au> (message from root on Mon, 22 Apr 1996 18:20:36 +1000) Subject: Re: Get ready to through the book at me :) .... Reply-To: kagel AT dg1 DOT bloomberg DOT com Errors-To: postmaster AT ns1 Date: Mon, 22 Apr 1996 18:20:36 +1000 From: root Reply-To: naderr AT topaz DOT cqu DOT edu DOT au Content-Type: text Content-Length: 909 Ok fellas, here we go, I'm trying to write the most simple makefile for the most simple of C programs, hello.cc ... yet I get makefile:5: *** missing separator. Stop The makefile goes like: # gnu makefile all : hello.exe hello.exe : hello.cc gcc -O2 hello.cc -o hello.exe ^^^^^^^^ You must have spaces here! Make requires a tab character instead!