This is the mail archive of the cygwin@sourceware.cygnus.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Make addity?


Hello Lewis, you wrote:
>As requested, I looked through back issues of the newsletter before
>posting. I DID find mention of my problem, but no solution was given and
>the answer didn't satisfy me.
>
>I have a problem in that, when I modify my make files, I get:
>
>	makefile:48: *** missing separator.  Stop.
How does this line and its context look like? This error normally
appaers if a tab before a command is missing. Example:

all:    $(GT_EXE) $(CGT_EXE)

$(GT_EXE):      $(GT_OBJ) $(GT_RES)
        $(CC) $(LDFLAGS) -o $@ $(GT_OBJ) $(GT_RES) $(GT_LIB)

$(CGT_EXE):     $(CGT_OBJ)
        $(CC) $(LDFLAGS) -o $@ $(CGT_OBJ) $(CGT_LIB)
^^^^^^^^ has to be a tab

I'm also getting massive problems here if i try to use make in a
nonbinary mounted directory. Perhaps that's your problem, too? Just
try to mount your source directory in binary mode.
-- 
bye, Michael
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]