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, <help-m...@gnu.org>". 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 _______________________________________________ Bug-make mailing list Bug-make@gnu.org https://lists.gnu.org/mailman/listinfo/bug-make