Changeset 2709 for trunk/src/opengl/glu
- Timestamp:
- Feb 10, 2000, 12:40:56 AM (26 years ago)
- Location:
- trunk/src/opengl/glu
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/opengl/glu/makefile
r2702 r2709 1 # $Id: makefile,v 1.7 2000-02-09 14:49:36 sandervl Exp $ 1 # $Id: makefile,v 1.8 2000-02-09 23:40:50 bird Exp $ 2 2 3 # 3 4 # PD-Win32 … … 314 315 util\registry.obj 315 316 317 316 318 $(TARGET).DLL: $(SOURCES) initterm.obj resource.obj $(TARGET).lrf $(TARGET).def 317 319 cd util … … 325 327 $(CP) $@ $(PDWIN32_BIN) 326 328 329 327 330 $(TARGET).lrf: makefile 328 @echo Creating file <<$(@B).lrf331 @echo Creating file <<$(@B).lrf 329 332 $(OBJS) 330 333 /OUT:$(TARGET).DLL … … 337 340 <<keep 338 341 342 339 343 $(TARGET).lib: $(TARGET)exp.def 340 344 $(IMPLIB) $(IMPLIBFLAGS) $@ $(TARGET)exp.def … … 344 348 $(IMPDEF) $** $@ 345 349 350 346 351 resource.asm: $(TARGET).rc 347 352 $(RC) $(RCFLAGS) -o resource.asm $(TARGET).rc 348 353 349 resource.obj: resource.asm 350 351 initterm.obj: initterm.cpp 354 355 dep: 356 $(DEPEND) -I$(PDWIN32_INCLUDE);$(PDWIN32_INCLUDE)\win \ 357 *.c *.cpp *.h *.asm *.inc $(PDWIN32_INCLUDE)\*.h 358 cd util 359 $(MAKE_CMD) NODEP=1 dep 360 cd ..\tess 361 $(MAKE_CMD) NODEP=1 dep 362 cd ..\nurbs 363 $(MAKE_CMD) NODEP=1 dep 364 cd .. 365 366 !ifndef NODEP 367 !include .depend 368 !endif 369 352 370 353 371 clean: 354 $(RM) *.obj *.dll *.lib *.lrf *exp.def resource.asm 355 $(RM) $(PDWIN32_BIN)\$(TARGET).dll 356 $(RM) $(PDWIN32_LIB)\$(TARGET).lib 357 cd util 358 $(MAKE_CMD) clean 359 cd ..\tess 360 $(MAKE_CMD) clean 361 cd ..\nurbs 362 $(MAKE_CMD) clean 363 cd .. 364 372 $(RM) *.obj *.dll *.lib *.lrf *exp.def resource.asm \ 373 $(PDWIN32_BIN)\$(TARGET).dll $(PDWIN32_LIB)\$(TARGET).lib \ 374 cd util 375 $(MAKE_CMD) clean 376 cd ..\tess 377 $(MAKE_CMD) clean 378 cd ..\nurbs 379 $(MAKE_CMD) clean 380 cd .. 381 -
trunk/src/opengl/glu/nurbs/interface/makefile
r2689 r2709 1 # $Id: makefile,v 1. 1 2000-02-09 08:49:03 jeroenExp $1 # $Id: makefile,v 1.2 2000-02-09 23:40:51 bird Exp $ 2 2 # 3 3 # PD-Win32 API … … 14 14 !include $(PDWIN32_INCLUDE)/pdwin32.mk 15 15 16 CINCLUDE=-I..\.. -I..\internals -I..\nurbtess -I..\..\..\mesa 16 CINCLUDE=-I..\.. -I..\internals -I..\nurbtess -I..\..\..\mesa -I$(PDWIN32_INCLUDE) -I..\..\include 17 17 18 CFLAGS = $(CFLAGS) $(CINCLUDE) -I$(PDWIN32_INCLUDE) -I..\..\include-DNDEBUG19 CXXFLAGS = $(CXXFLAGS) $(CINCLUDE) - I$(PDWIN32_INCLUDE) -I..\..\include -DNDEBUG18 CFLAGS = $(CFLAGS) $(CINCLUDE) -DNDEBUG 19 CXXFLAGS = $(CXXFLAGS) $(CINCLUDE) -DNDEBUG 20 20 21 21 OBJS = glcurveval.obj glinterface.obj glrenderer.obj glsurfeval.obj \ … … 25 25 all: $(OBJS) 26 26 27 # 28 # Dependencies 29 # 30 glcurveval.obj: glcurveval.cpp glimports.h glrenderer.h glcurveval.h 31 glinterface.obj: glinterface.cpp glimports.h glrenderer.h 32 glrenderer.obj: glrenderer.cpp glimports.h glrenderer.h 33 glsurfeval.obj: glsurfeval.cpp glimports.h glrenderer.h glsurfeval.h bezierPatchMesh.h 34 insurfeval.obj: insurfeval.cpp glsurfeval.h 35 bezierPatch.obj: bezierPatch.cpp bezierPatch.h bezierEval.h 36 bezierEval.obj: bezierEval.cpp bezierEval.h 37 bezierPatchMeshobj: bezierPatchMesh.cpp bezierPatchMesh.h bezierEval.h 38 incurveeval.obj: incurveeval.cpp glcurveval.h 27 28 dep: 29 $(DEPEND) $(CINCLUDE) *.c *.cpp *.h *.asm *.inc \ 30 ..\internals\*.h ..\nurbtess\*.h ..\..\..\mesa\*.h 31 32 !ifndef NODEP 33 !include .depend 34 !endif 35 39 36 40 37 clean: 41 $(RM) *.obj 38 $(RM) *.obj *.pch 42 39 -
trunk/src/opengl/glu/nurbs/internals/makefile
r2689 r2709 1 # $Id: makefile,v 1.1 2000-02-09 08:50:24 jeroen Exp $ 1 # $Id: makefile,v 1.2 2000-02-09 23:40:51 bird Exp $ 2 2 3 # 3 4 # PD-Win32 API … … 14 15 !include $(PDWIN32_INCLUDE)/pdwin32.mk 15 16 16 CINCLUDE=-I..\internals -I..\nurbtess -I..\..\..\mesa 17 CINCLUDE=-I..\internals -I..\nurbtess -I..\..\..\mesa -I..\..\include -I$(PDWIN32_INCLUDE) 17 18 CDEFS=-DSTANDALONE -DLIBRARYBUILD -DNDEBUG 18 19 19 CFLAGS = $(CFLAGS) $(CINCLUDE) -I..\..\include -I$(PDWIN32_INCLUDE)$(CDEFS)20 CXXFLAGS = $(CXXFLAGS) $(CINCLUDE) -I..\..\include -I$(PDWIN32_INCLUDE)$(CDEFS)20 CFLAGS = $(CFLAGS) $(CINCLUDE) $(CDEFS) 21 CXXFLAGS = $(CXXFLAGS) $(CINCLUDE) $(CDEFS) 21 22 22 23 OBJS = arc.obj arcsorter.obj arctess.obj backend.obj basiccrveval.obj \ … … 33 34 all: $(OBJS) 34 35 35 # 36 # Dependencies 37 # 38 arc.obj: arc.cpp myassert.h arc.h bin.h bezierarc.h pwlarc.h simplemath.h 39 arcsorter.obj: arcsorter.cpp arc.h arcsorter.h subdivider.h 40 arctess.obj: arctess.cpp myassert.h arctess.h bufpool.h simplemath.h bezierarc.h trimvertex.h trimvertpool.h 41 backend.obj: backend.cpp backend.h basiccrveval.h basicsurfeval.h nurbsconsts.h 42 basiccrveval.obj: basiccrveval.cpp types.h basiccrveval.h 43 basicsurfeval.obj: basicsurfeval.cpp types.h basicsurfeval.h 44 bin.obj: bin.cpp myassert.h bin.h 45 bufpool.obj: bufpool.cpp myassert.h bufpool.h 46 cachingeval.obj: cachingeval.cpp cachingeval.h 47 ccw.obj: ccw.cpp myassert.h subdivider.h types.h arc.h trimvertex.h simplemath.h mysetjmp.h 48 coveandtiler.obj: coveandtiler.cpp myassert.h coveandtiler.h gridvertex.h gridtrimvertex.h uarray.h backend.h 49 curve.obj: curve.cpp myassert.h mymath.h curve.h mapdesc.h types.h quilt.h nurbsconsts.h 50 curvelist.obj: curvelist.cpp myassert.h quilt.h curvelist.h curve.h nurbsconsts.h types.h 51 curvesub.obj: curvesub.cpp myassert.h subdivider.h renderhints.h backend.h quilt.h curvelist.h curve.h nurbsconsts.h 52 displaylist.obj: displaylist.cpp nurbstess.h displaylist.h 53 flist.obj: flist.cpp myassert.h flist.h 54 flistsorter.obj: flistsorter.cpp flistsorter.h 55 hull.obj: hull.cpp myassert.h hull.h gridvertex.h gridtrimvertex.h gridline.h trimline.h uarray.h trimregion.h 56 intersect.obj: intersect.cpp myassert.h subdivider.h arc.h bin.h backend.h trimvertpool.h 57 knotvector.obj: knotvector.cpp myassert.h knotvector.h defines.h 58 mapdesc.obj: mapdesc.cpp myassert.h mystring.h mymath.h backend.h nurbsconsts.h mapdesc.h 59 mapdescv.obj: mapdescv.cpp myassert.h mystring.h mymath.h nurbsconsts.h mapdesc.h 60 maplist.obj: maplist.cpp myassert.h mymath.h nurbsconsts.h maplist.h mapdesc.h backend.h 61 mesher.obj: mesher.cpp myassert.h mesher.h gridvertex.h gridtrimvertex.h jarcloc.h gridline.h trimline.h uarray.h backend.h 62 monotonizer.obj: monotonizer.cpp myassert.h arc.h arctess.h bezierarc.h bin.h mapdesc.h nurbsconsts.h subdivider.h 63 mycode.obj: mycode.cpp mymath.h 64 nurbsinterfac.obj: nurbsinterfac.cpp nurbsconsts.h nurbstess.h bufpool.h quilt.h displaylist.h knotvector.h mapdesc.h 65 nurbstess.obj: nurbstess.cpp myassert.h mysetjmp.h nurbsconsts.h nurbstess.h bufpool.h quilt.h knotvector.h mapdesc.h maplist.h 66 patch.obj: patch.cpp myassert.h mymath.h mystring.h patch.h mapdesc.h quilt.h nurbsconsts.h simplemath.h 67 patchlist.obj: patchlist.cpp myassert.h quilt.h patchlist.h patch.h nurbsconsts.h 68 quilt.obj: quilt.cpp myassert.h quilt.h backend.h mapdesc.h flist.h knotvector.h patchlist.h simplemath.h 69 reader.obj: reader.cpp nurbsconsts.h reader.h trimvertex.h simplemath.h 70 renderhints.obj: renderhints.cpp renderhints.h defines.h nurbsconsts.h 71 slicer.obj: slicer.cpp myassert.h bufpool.h slicer.h backend.h arc.h gridtrimvertex.h trimvertex.h varray.h 72 sorter.obj: sorter.cpp sorter.h 73 splitarcs.obj: splitarcs.cpp myassert.h subdivider.h arcsorter.h arc.h bin.h 74 subdivider.obj: subdivider.cpp myassert.h subdivider.h arc.h bezierarc.h bin.h renderhints.h backend.h mapdesc.h quilt.h patchlist.h patch.h nurbsconsts.h trimvertpool.h simplemath.h 75 tobezier.obj: tobezier.cpp myassert.h mystring.h quilt.h knotvector.h 76 trimline.obj: trimline.cpp myassert.h backend.h trimline.h 77 trimregion.obj: trimregion.cpp myassert.h backend.h trimregion.h 78 trimvertpool.obj: trimvertpool.cpp myassert.h mystring.h trimvertex.h trimvertpool.h bufpool.h 79 uarray.obj: uarray.cpp myassert.h uarray.h arc.h 80 varray.obj: varray.cpp myassert.h varray.h arc.h 81 dataTransform.obj: dataTransform.cpp myassert.h nurbsconsts.h trimvertex.h datatransform.h 82 monoTriangulationBackend.obj: monoTriangulationBackend.cpp backend.h arc.h 36 37 dep: 38 $(DEPEND) $(CINCLUDE) *.c *.cpp *.h *.asm *.inc \ 39 ..\nurbtess\*.h ..\..\..\mesa\*.h ..\..\include\*.h 40 41 !ifndef NODEP 42 !include .depend 43 !endif 44 83 45 84 46 clean: 85 $(RM) *.obj 47 $(RM) *.obj *.pch 86 48 -
trunk/src/opengl/glu/nurbs/makefile
r2692 r2709 1 # $Id: makefile,v 1. 2 2000-02-09 12:08:32bird Exp $1 # $Id: makefile,v 1.3 2000-02-09 23:40:51 bird Exp $ 2 2 # 3 3 # PD-Win32 API … … 17 17 18 18 all: 19 cd interface 20 $(MAKE_CMD) 21 cd ..\internals 22 $(MAKE_CMD) 23 cd ..\nurbtess 24 $(MAKE_CMD) 25 cd .. 19 cd interface 20 $(MAKE_CMD) 21 cd ..\internals 22 $(MAKE_CMD) 23 cd ..\nurbtess 24 $(MAKE_CMD) 25 cd .. 26 27 28 dep: 29 cd interface 30 $(MAKE_CMD) NODEP=1 dep 31 cd ..\internals 32 $(MAKE_CMD) NODEP=1 dep 33 cd ..\nurbtess 34 $(MAKE_CMD) NODEP=1 dep 35 cd .. 36 26 37 27 38 clean: 28 cd interface 29 $(MAKE_CMD) clean 30 cd ..\internals 31 $(MAKE_CMD) clean 32 cd ..\nurbtess 33 $(MAKE_CMD) clean 34 cd .. 39 cd interface 40 $(MAKE_CMD) clean 41 cd ..\internals 42 $(MAKE_CMD) clean 43 cd ..\nurbtess 44 $(MAKE_CMD) clean 45 cd .. 46 -
trunk/src/opengl/glu/nurbs/nurbtess/makefile
r2689 r2709 1 # $Id: makefile,v 1.1 2000-02-09 08:48:27 jeroen Exp $ 1 # $Id: makefile,v 1.2 2000-02-09 23:40:51 bird Exp $ 2 2 3 # 3 4 # PD-Win32 API … … 15 16 16 17 17 CINCLUDE=-I..\internals -I..\nurbtess -I..\..\..\mesa 18 CINCLUDE=-I..\internals -I..\nurbtess -I..\..\..\mesa -I$(PDWIN32_INCLUDE) -I..\..\include 18 19 19 CFLAGS = $(CFLAGS) $(CINCLUDE) - I$(PDWIN32_INCLUDE) -I..\..\include -DNDEBUG20 CXXFLAGS = $(CXXFLAGS) $(CINCLUDE) - I$(PDWIN32_INCLUDE) -I..\..\include -DNDEBUG20 CFLAGS = $(CFLAGS) $(CINCLUDE) -DNDEBUG 21 CXXFLAGS = $(CXXFLAGS) $(CINCLUDE) -DNDEBUG 21 22 22 23 OBJS = directedLine.obj gridWrap.obj monoTriangulation.obj partitionY.obj \ … … 28 29 all: $(OBJS) 29 30 30 # 31 # Dependencies 32 # 33 directedLine.obj: directedLine.cpp glimports.h zlassert.h quicksort.h directedLine.h polyDBG.h 34 gridWrap.obj: gridWrap.cpp zlassert.h gridWrap.h 35 monoTriangulation.obj: monoTriangulation.cpp glimports.h zlassert.h monoTriangulation.h polyUtil.h partitionX.h monoPolyPart.h 36 partitionY.obj: partitionY.cpp zlassert.h partitionY.h searchTree.h quicksort.h polyUtil.h 37 polyDBG.obj: polyDBG.cpp zlassert.h polyDBG.h 38 polyUtil.obj: polyUtil.cpp polyUtil.h 39 primitiveStream.obj: primitiveStream.cpp primitiveStream.h 40 quicksort.obj: quicksort.cpp 41 rectBlock.obj: rectBlock.cpp glimports.h zlassert.h rectBlock.h 42 sampleComp.obj: sampleComp.cpp glimports.h sampleComp.h sampleCompTop.h sampleCompBot.h sampleCompRight.h 43 sampleCompBot.obj: sampleCompBot.cpp zlassert.h sampleCompTop.h sampleCompBot.h 44 sampleCompRight.obj: sampleCompRight.cpp glimports.h zlassert.h sampleCompRight.h 45 sampleCompTop.obj: sampleCompTop.cpp zlassert.h sampleCompTop.h sampleCompRight.h 46 sampleMonoPoly.obj: sampleMonoPoly.cpp glimports.h zlassert.h sampleMonoPoly.h sampleComp.h polyDBG.h partitionX.h 47 sampledLine.obj: sampledLine.cpp glimports.h zlassert.h sampledLine.h 48 searchTree.obj: searchTree.cpp zlassert.h searchTree.h 49 partitionX.obj: partitionX.cpp partitionX.h 50 monoChain.obj: monoChain.cpp glimports.h zlassert.h monoChain.h quicksort.h searchTree.h polyUtil.h 51 monoPolyPart.obj: monoPolyPart.cpp directedLine.h monoPolyPart.h 31 32 dep: 33 $(DEPEND) $(CINCLUDE) *.c *.cpp *.h *.asm *.inc \ 34 ..\..\mesa\*.h ..\nurbtess\*.h ..\internals\*.h ..\..\include\*.h 35 36 !ifndef NODEP 37 !include .depend 38 !endif 39 52 40 53 41 clean: 54 $(RM) *.obj 42 $(RM) *.obj *.pch 55 43 -
trunk/src/opengl/glu/tess/makefile
r2689 r2709 1 # $Id: makefile,v 1. 1 2000-02-09 08:47:34 jeroenExp $1 # $Id: makefile,v 1.2 2000-02-09 23:40:51 bird Exp $ 2 2 # 3 3 # PD-Win32 API … … 14 14 !include $(PDWIN32_INCLUDE)/pdwin32.mk 15 15 16 CINCLUDE=-I.. -I..\..\mesa 16 CINCLUDE=-I.. -I..\..\mesa -I$(PDWIN32_INCLUDE) -I..\include 17 17 CDEFS=-DNDEBUG -Tdp 18 18 19 CFLAGS = $(CFLAGS) $(CINCLUDE) -I$(PDWIN32_INCLUDE) $(CDEFS) -I..\include-DNDEBUG20 CXXFLAGS = $(CXXFLAGS) $(CINCLUDE) - I$(PDWIN32_INCLUDE) -$(CDEFS) -I..\include-DNDEBUG19 CFLAGS = $(CFLAGS) $(CINCLUDE) $(CDEFS) -DNDEBUG 20 CXXFLAGS = $(CXXFLAGS) $(CINCLUDE) -$(CDEFS) -DNDEBUG 21 21 22 22 OBJS= dict.obj memalloc.obj mesh.obj normal.obj priorityq.obj \ … … 25 25 all: $(OBJS) 26 26 27 # 28 # Dependencies 29 # 30 dict.obj: dict.c dict-list.h memalloc.h 31 memalloc.obj: memalloc.c memalloc.h 32 mesh.obj: mesh.c mesh.h memalloc.h 33 normal.obj: normal.c mesh.h tess.h normal.h 34 priorityq.obj: priorityq.c memalloc.c priorityq-heap.h priorityq-sort.h 35 render.obj: render.c mesh.h tess.h render.h 36 sweep.obj: sweep.c mesh.h geom.h tess.h dict.h priorityq.h memalloc.h sweep.h 37 tess.obj: tess.c memalloc.c tess.h mesh.h normal.h sweep.h tessmono.h render.h 38 tessmono.obj: tessmono.c geom.h mesh.h tessmono.h 39 geom.obj: geom.c mesh.h geom.h 27 28 dep: 29 $(DEPEND) $(CINCLUDE) *.c *.cpp *.h *.asm *.inc \ 30 ..\..\mesa\*.h ..\*.h ..\include\*.h 31 32 !ifndef NODEP 33 !include .depend 34 !endif 35 40 36 41 37 clean: -
trunk/src/opengl/glu/util/makefile
r2689 r2709 1 # $Id: makefile,v 1. 1 2000-02-09 08:47:12 jeroenExp $1 # $Id: makefile,v 1.2 2000-02-09 23:40:51 bird Exp $ 2 2 # 3 3 # PD-Win32 API … … 14 14 !include $(PDWIN32_INCLUDE)/pdwin32.mk 15 15 16 CINCLUDE=-I.. -I..\..\mesa 16 CINCLUDE=-I.. -I..\..\mesa -I$(PDWIN32_INCLUDE) -I..\include 17 17 18 CFLAGS = $(CFLAGS) $(CINCLUDE) - I$(PDWIN32_INCLUDE) -I..\include -Tdp -DNDEBUG19 CXXFLAGS = $(CXXFLAGS) $(CINCLUDE) -I$(PDWIN32_INCLUDE) -I..\include-Tdp -DNDEBUG18 CFLAGS = $(CFLAGS) $(CINCLUDE) -Tdp -DNDEBUG 19 CXXFLAGS = $(CXXFLAGS) $(CINCLUDE) -Tdp -DNDEBUG 20 20 21 21 OBJS= error.obj glue.obj mipmap.obj project.obj quad.obj registry.obj … … 23 23 all: $(OBJS) 24 24 25 # 26 # Dependencies 27 # 28 error.obj: error.c 29 glue.obj: glue.c gluint.h 30 mipmap.obj: mipmap.c gluint.h 31 project.obj: project.c gluint.h 32 quad.obj: quad.c gluint.h 33 registry.obj: registry.c 25 26 dep: 27 $(DEPEND) $(CINCLUDE) *.c *.cpp *.h *.asm *.inc \ 28 ..\include\*.h ..\..\mesa\*.h ..\*.h 29 30 !ifndef NODEP 31 !include .depend 32 !endif 33 34 34 35 35 clean:
Note:
See TracChangeset
for help on using the changeset viewer.