diff options
author | Karl Schultz <kschultz@freedesktop.org> | 2001-09-25 16:25:41 +0000 |
---|---|---|
committer | Karl Schultz <kschultz@freedesktop.org> | 2001-09-25 16:25:41 +0000 |
commit | 954f511473e4e8cf643751d1f7c03d59c0bd48bf (patch) | |
tree | 8d030a7e5946a6fc6dec3ec18311d28ec787dfc1 /progs | |
parent | 968e557dcd6c4611d5517ea0550dc56256ccb99c (diff) |
Fix up Windows makefiles so that the debug build leaves debugger info
in the libraries. Make with NODEBUG=1 builds optimized without debug
info (doc'ed in top level Makefile.win).
Diffstat (limited to 'progs')
-rw-r--r-- | progs/demos/Makefile.win | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/progs/demos/Makefile.win b/progs/demos/Makefile.win index 02efb7f6ed..eb9dc5978b 100644 --- a/progs/demos/Makefile.win +++ b/progs/demos/Makefile.win @@ -1,4 +1,4 @@ -# $Id: Makefile.win,v 1.3 2001/09/18 20:47:23 kschultz Exp $ +# $Id: Makefile.win,v 1.4 2001/09/25 16:25:41 kschultz Exp $ # Mesa 3-D graphics library # Version: 3.5 @@ -76,7 +76,7 @@ targets: readtex.c readtex.h $(PROGS) $(OSMESAEXES) : $*.obj @echo $@ - $(link) -out:$@ $** /LIBPATH:$(LIBDIR) $(LIBS) $(EXTRALIBS) + $(link) $(lcommon) -out:$@ $** /LIBPATH:$(LIBDIR) $(LIBS) $(EXTRALIBS) readtex.c: @copy ../util/readtex.c . |