bug-make
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: 2 errors on make


From: Sebastian Pipping
Subject: Re: 2 errors on make
Date: Mon, 07 Nov 2011 16:04:26 +0100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:7.0.1) Gecko/20111020 Thunderbird/7.0.1

On 11/07/2011 11:11 AM, andrec wrote:
> On win32 systems :
> 
> # Thanks Blackthorne, for corrections on the *.c rule
> SRC = *.c
> CFLAGS = -Wall -shared -g
> GLUT_DIR = src/glut/glx
> 
> $(GLUT_DIR)/$(SRC) : $(GLUT_DIR)/*.h
> 
> glut32.dll :
>     gcc $(CFLAGS) $(GLUT_DIR)/$(SRC) -o glut32.dll
> 
> 
> C:\source\Mesa-7.11 07-11-2011  9:56:19,54> make
> make: `src/glut/glx/capturexfont.c' is up to date.
> 
> C:\source\Mesa-7.11 07-11-2011 10:00:16,79> make
> make: `src/glut/glx/capturexfont.c' is up to date.
> 
> C:\source\Mesa-7.11 07-11-2011 10:03:52,15> make
> make: Nothing to be done for `src/glut/glx/capturexfont.c'.

Three thoughts on this:

 - If glut32.dll is made from $(GLUT_DIR)/$(SRC) it should depend on
   that.  I'm thinking of something like this:

     glut32.dll: $(GLUT_DIR)/$(SRC) $(GLUT_DIR)/*.h
        $(CC) $(CFLAGS) $(LDFLAGS) $(GLUT_DIR)/$(SRC) -o $@

 - It seems the output you provided does not indicate errors
   but rather informational messages.  This does not look like a bug
   in GNU make.  If you meant to report a bug, please explain in more
   detail.

 - Quoting <https://www.gnu.org/s/make/>:

     "There is a separate list for general user help and discussion,
      <address@hidden>".

   If that's what you are looking for, you can subscribe to that list at
   https://lists.gnu.org/mailman/listinfo/help-make

Best,




Sebastian



reply via email to

[Prev in Thread] Current Thread [Next in Thread]