If I am not mistaken the current CVS is missing src-glu/Makefile.fx
I am enclosing the one I have used as an attachment.
It propably contains some odd things I have added,
(I did not have an unmodified reference version...)
but it should work.

(Unless there is somethign obviously wrong
with this, I suggest adding this to CVS)



                Eero
!include <win32.mak>
dlllflags =  /NODEFAULTLIB /INCREMENTAL:NO /RELEASE /NOLOGO 
/ENTRY:_DllMainCRTStartup@12 -dll  /MD

CFLAGS        = $(cvarsdll) /Ox /G5  /Zi /D__MSC__ /DFX /D__WIN32__ \
                /DWIN32 /I..\include

OBJS          = glu.obj \
                mipmap.obj \
                nurbs.obj \
                nurbscrv.obj \
                nurbssrf.obj \
                nurbsutl.obj \
                project.obj \
                quadric.obj \
                tess.obj \
                tess_fist.obj \
                tess_hash.obj \
                tess_heap.obj 


PROGRAM       = ..\lib\GLU32.dll

all:            $(PROGRAM)

$(PROGRAM):     $(OBJS) 
                $(link) $(dlllflags) /out:$(PROGRAM) /pdb:..\lib\GLU32.pdb /map /debug\
                 /def:fxglu.def $(OBJS) $(guilibsdll) ..\lib\OpenGL32.lib

Reply via email to