compilation problem
Ajit George
gajit@kurianinc.com
Sun Oct 31 19:54:00 GMT 1999
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
-------------- next part --------------
# Makefile pour guest.cgi
# cr?ation sous Windows
# target : any
# date : 13/10/99
DIR_CGI=/cygnus/cygwin-b20/cgi
INCLUDE_SYS=/cygnus/cygwin-b20/H-i586-cygwin32/i586-cygwin32/include
INCLUDE_APPLI=$(DIR_CGI)/include
CC=/cygnus/cygwin-b20/H-i586-cygwin32/bin/gcc.exe
DIR_EXE=$(DIR_CGI)/bin
DIR_INSTALL=d:/devinternet/cgi
clean:
rm $(DIR_EXE)/*
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)
More information about the Cygwin
mailing list