Mailing-List: contact cygwin-help@sourceware.cygnus.com; run by ezmlm
List-Unsubscribe: <mailto:cygwin-unsubscribe-archive-cygwin=delorie.com@sourceware.cygnus.com>
List-Subscribe: <mailto:cygwin-subscribe@sourceware.cygnus.com>
List-Archive: <http://sourceware.cygnus.com/ml/cygwin/>
List-Post: <mailto:cygwin@sourceware.cygnus.com>
List-Help: <mailto:cygwin-help@sourceware.cygnus.com>, <http://sourceware.cygnus.com/ml/#faqs>
Sender: cygwin-owner@sourceware.cygnus.com
Delivered-To: mailing list cygwin@sourceware.cygnus.com
From: "Ajit George" <gajit@kurianinc.com>
To: <cygwin@sourceware.cygnus.com>
Subject: RE: compilation problem
Date: Fri, 15 Oct 1999 00:36:51 -0500
Message-ID: <000f01bf16cf$4835f400$830120d0@abita.kurianinc.com>
MIME-Version: 1.0
Content-Type: multipart/mixed;
	boundary="----=_NextPart_000_0010_01BF16A5.5F5FEC00"
X-Priority: 3 (Normal)
X-MSMail-Priority: Normal
X-Mailer: Microsoft Outlook 8.5, Build 4.71.2377.0
X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3155.0
Importance: Normal
In-Reply-To: <19991014155838.7095.qmail@www0w.netaddress.usa.net>

------=_NextPart_000_0010_01BF16A5.5F5FEC00
Content-Type: text/plain;
	charset="iso-8859-1"
Content-Transfer-Encoding: 7bit

Charles is correct.  You also have some typos where some variables aren't
enclosed in parentheses.  The attached file fixes those problems.

To summarize:  make requires that action lines begin with tabs, not spaces.
I don't think make has problems with ^Ms.

Ajit



-----Original Message-----
From:	cygwin-owner@sourceware.cygnus.com
[mailto:cygwin-owner@sourceware.cygnus.com] On Behalf Of Charles McKnight
Sent:	Thursday, October 14, 1999 10:59 AM
To:	cygwin@sourceware.cygnus.com
Subject:	RE: compilation problem

Jean,

What appears to be happening is that make does not recognize the spaces
after
the colon (:) or on the following recipe lines.  If you will replace them
with
tabs, this should fix the problem.  I've encountered this issue on other
versions of make before.  Another solution is to modify the make source code
to recognize a space as a legal separator.

Charles McKnight
cmcknigh@fastlane.net

____________________________________________________________________
Get your own FREE, personal Netscape WebMail account today at
http://webmail.netscape.com.

--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com


------=_NextPart_000_0010_01BF16A5.5F5FEC00
Content-Type: application/octet-stream;
	name="makefile"
Content-Transfer-Encoding: quoted-printable
Content-Disposition: attachment;
	filename="makefile"

# Makefile pour guest.cgi
# cr=E9ation sous Windows
# target : any
# date : 13/10/99

DIR_CGI=3D/cygnus/cygwin-b20/cgi
INCLUDE_SYS=3D/cygnus/cygwin-b20/H-i586-cygwin32/i586-cygwin32/include
INCLUDE_APPLI=3D$(DIR_CGI)/include
CC=3D/cygnus/cygwin-b20/H-i586-cygwin32/bin/gcc.exe
DIR_EXE=3D$(DIR_CGI)/bin
DIR_INSTALL=3Dd:/devinternet/cgi


clean:
	rm $(DIR_EXE)/*=20
	rm $(DIR_CGI)/*

install:
	cp $(DIR_EXE)/guest.cgi $(DIR_INSTALL)

guest.cgi: $(DIR_CGI)/guest.o
	$(CC) -g $(DEBUG) -o $(DIR_EXE)/guest.cgi $(DIR_CGI)/guest.o

guest.o: $(DIR_CGI)/guest.c
	$(CC) -c -g $(DEBUG) $(DIR_CGI)/guest.c -I$(INCLUDE_SYS) =
-I$(INCLUDE_APPLI)



------=_NextPart_000_0010_01BF16A5.5F5FEC00
Content-Type: text/plain; charset=us-ascii

--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com
------=_NextPart_000_0010_01BF16A5.5F5FEC00--

