Date: Mon, 22 Apr 1996 22:57:49 +1000 From: root Message-Id: <199604221257.WAA05210@linuxbox.nse.com.au> To: Eli Zaretskii CC: djgpp AT delorie DOT com Subject: RE: Get ready to through the book at me :) .... In-Reply-To: <75589888@toto.iv> Reply-To: naderr AT topaz DOT cqu DOT edu DOT au Eli Zaretskii writes: > > On Mon, 22 Apr 1996, root wrote: > > > hello.exe : hello.cc > > gcc -O2 hello.cc -o hello.exe > ^^^^^^^^ > Make sure that the whitespace before `gcc' is a TAB, not spaces. GNU > Make insists on TABs as the first character of the rule lines. Some > other Make's also accept spaces. Hmm, I have Eli, I have :) This is what the makefile looks like in 'vi' under Linux # GNU makefile^M all : hello.exe^M ^M hello.exe : hello.cc^M gcc -O2 hello.cc -o hello.exe^M ^M ~ ~ ~ ~ Here's a hexdump ... as you can see there's a '09' for the backspace .... [24][ root AT linuxbox: /a5/src/85309/assgn/1/q1/ # hexdump makefile 0000000 2023 4e47 2055 616d 656b 6966 656c 200d 0000010 610a 6c6c 3a20 6820 6c65 6f6c 652e 6578 0000020 0a0d 0a0d 6568 6c6c 2e6f 7865 2065 203a 0000030 6568 6c6c 2e6f 6363 0a0d 6709 6363 2d20 0000040 324f 6820 6c65 6f6c 632e 2063 6f2d 6820 0000050 6c65 6f6c 652e 6578 0a0d 0a0d 000005c [25][ root AT linuxbox: /a5/src/85309/assgn/1/q1/ Yet when I run it either in straight dos or under dosemu 0.63.1.8 I get that error at line 5 .... has me beat! Any other ideas greatly appreciated Cheers, Rob