Changeset 4624 for trunk/src/opengl/glu/nurbs
- Timestamp:
- Nov 19, 2000, 10:27:40 AM (25 years ago)
- Location:
- trunk/src/opengl/glu/nurbs
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/opengl/glu/nurbs/interface/makefile
r3031 r4624 1 # $Id: makefile,v 1. 6 2000-03-06 23:33:49bird Exp $1 # $Id: makefile,v 1.7 2000-11-19 08:58:13 bird Exp $ 2 2 # 3 3 # PD-Win32 API … … 6 6 # 7 7 8 9 # 8 10 # Directory macros. 11 # 9 12 PDWIN32_INCLUDE = ..\..\..\..\..\include 10 13 PDWIN32_LIB = ..\..\..\..\..\lib … … 13 16 14 17 15 # Local cleanup only. 16 LOCALCLEAN = 1 18 # 19 # Tell buildenvironmet to build an object library and to invoke additional dep rule. 20 # 21 LIBTARGET = 1 22 ADDITIONAL_DEP = mydep 17 23 18 24 25 # 19 26 # Compiler, tools, and interference rules. 27 # 20 28 !include $(PDWIN32_INCLUDE)/pdwin32.mk 21 29 22 30 23 # Flag overloads and local macros. 24 CLEANEXTRAS = 25 26 CINCLUDE = -I..\..\..\mesa\GL -I..\.. -I..\internals -I..\nurbtess \ 27 -I..\..\include -I..\..\..\mesa 28 29 CFLAGS = $(CFLAGS) $(CINCLUDE) -DNDEBUG 30 CXXFLAGS = $(CXXFLAGS) $(CINCLUDE) -DNDEBUG 31 # 32 # Flag overloads. 33 # 34 CINCLUDES = $(CINCLUDES) -I..\..\..\mesa\GL -I..\.. -I..\internals \ 35 -I..\nurbtess -I..\..\include -I..\..\..\mesa 36 CDEFINES = $(CDEFINES) -DNDEBUG 31 37 32 38 33 # Object files. All objects should be prefixed with $(OBJDIR)! 39 # 40 # Object files. Prefix with OBJDIR and one space before the '\'. 41 # 34 42 OBJS = \ 35 43 $(OBJDIR)\glcurveval.obj \ … … 44 52 45 53 54 # 46 55 # Target name - name of the library without extention and path. 47 TARGET = interface 56 # 57 TARGET = interface 48 58 49 59 50 # Create all libraries (not importlibraries) 51 all: $(OBJDIR) \ 52 $(OBJDIR)\$(TARGET).lib 60 # 61 # Includes the common rules. 62 # 63 !include $(PDWIN32_INCLUDE)/pdwin32.post 53 64 54 65 55 # Create all libraries (not importlibraries) 56 libs: all 57 58 59 # Lib rule - build importlibrary (and evt. other libs) 60 $(OBJDIR)\$(TARGET).lib: $(OBJS) 61 $(RM) $@ 62 $(ILIB) $(ILIBFLAGS) $@ $(OBJS); 63 64 65 # Dep rule - makes depenencies for C, C++ and Asm files. 66 dep: 67 $(DEPEND) $(CINCLUDE) *.c *.cpp *.h *.asm *.inc \ 66 # 67 # Additional dep rule - adds dependencies for some additional headers. 68 # 69 mydep: 70 $(DEPEND) -a $(CINCLUDES) \ 68 71 ..\internals\*.h ..\nurbtess\*.h ..\..\..\mesa\GL\*.h 69 72 70 71 # Includes the common rules.72 !include $(PDWIN32_INCLUDE)/pdwin32.post73 -
trunk/src/opengl/glu/nurbs/internals/makefile
r4308 r4624 1 # $Id: makefile,v 1. 5 2000-09-22 10:43:31bird Exp $1 # $Id: makefile,v 1.6 2000-11-19 08:58:14 bird Exp $ 2 2 3 3 # … … 7 7 # 8 8 9 10 # 9 11 # Directory macros. 12 # 10 13 PDWIN32_INCLUDE = ..\..\..\..\..\include 11 14 PDWIN32_LIB = ..\..\..\..\..\lib … … 14 17 15 18 16 # Local cleanup only. 17 LOCALCLEAN = 1 19 # 20 # Tell buildenvironmet to build an object library and to invoke additional dep rule. 21 # 22 LIBTARGET = 1 23 ADDITIONAL_DEP = mydep 18 24 19 25 26 # 20 27 # Compiler, tools, and interference rules. 28 # 21 29 !include $(PDWIN32_INCLUDE)/pdwin32.mk 22 30 23 31 24 # Flag overloads and local macros. 25 CLEANEXTRAS = 26 27 CINCLUDE = -I..\internals -I..\nurbtess -I..\..\..\mesa\GL -I..\..\include 28 CDEFS = -DSTANDALONE -DLIBRARYBUILD -DNDEBUG 29 30 CFLAGS = $(CFLAGS) $(CINCLUDE) $(CDEFS) -O- 31 CXXFLAGS = $(CXXFLAGS) $(CINCLUDE) $(CDEFS) 32 # 33 # Flag overloads. 34 # 35 CINCLUDES = $(CINCLUDES) -I..\internals -I..\nurbtess -I..\..\..\mesa\GL -I..\..\include 36 CDEFINES = $(CDEFINES) -DSTANDALONE -DLIBRARYBUILD -DNDEBUG 37 CFLAGS = $(CFLAGS) -O- 32 38 33 39 34 # Object files. All objects should be prefixed with $(OBJDIR)! 40 # 41 # Object files. Prefix with OBJDIR and one space before the '\'. 42 # 35 43 OBJS = \ 36 44 $(OBJDIR)\arc.obj \ … … 59 67 $(OBJDIR)\mesher.obj \ 60 68 $(OBJDIR)\monotonizer.obj \ 61 $(OBJDIR)\mycode.obj 62 63 OBJS2 = \ 69 $(OBJDIR)\mycode.obj \ 64 70 $(OBJDIR)\nurbsinterfac.obj \ 65 71 $(OBJDIR)\nurbstess.obj \ … … 83 89 84 90 91 # 85 92 # Target name - name of the library without extention and path. 93 # 86 94 TARGET = internals 87 95 88 96 89 # Create all libraries (not importlibraries) 90 all: $(OBJDIR) \ 91 $(OBJDIR)\$(TARGET).lib 97 # 98 # Includes the common rules. 99 # 100 !include $(PDWIN32_INCLUDE)/pdwin32.post 92 101 93 102 94 # Create all libraries (not importlibraries) 95 libs: all 96 97 98 # Lib rule - build importlibrary (and evt. other libs) 99 $(OBJDIR)\$(TARGET).lib: $(OBJS) $(OBJS2) 100 $(RM) $@ 101 $(ILIB) $(ILIBFLAGS) $@ $(OBJS); 102 $(ILIB) $(ILIBFLAGS) $@ $(OBJS2); 103 104 105 # Dep rule - makes depenencies for C, C++ and Asm files. 106 dep: 107 $(DEPEND) $(CINCLUDE) *.c *.cpp *.h *.asm *.inc \ 103 # 104 # Additional dep rule - adds dependencies for some additional headers. 105 # 106 mydep: 107 $(DEPEND) -a $(CINCLUDES) \ 108 108 ..\nurbtess\*.h ..\..\..\mesa\GL\*.h ..\..\include\*.h 109 109 110 111 # Includes the common rules.112 !include $(PDWIN32_INCLUDE)/pdwin32.post113 -
trunk/src/opengl/glu/nurbs/makefile
r3031 r4624 1 # $Id: makefile,v 1. 6 2000-03-06 23:33:48bird Exp $1 # $Id: makefile,v 1.7 2000-11-19 08:58:13 bird Exp $ 2 2 3 3 # … … 7 7 # 8 8 9 10 # 9 11 # Directory macros. 12 # 10 13 PDWIN32_INCLUDE = ..\..\..\..\include 11 14 PDWIN32_LIB = ..\..\..\..\lib … … 14 17 15 18 19 # 16 20 # Compiler, tools, and interference rules. 21 # 17 22 !include $(PDWIN32_INCLUDE)/pdwin32.mk 18 23 19 24 20 # All, libs, dep and clean rule. 25 # 26 # Subdirectories to travers. 27 # 28 SUBDIRS = \ 29 .\interface \ 30 .\internals \ 31 .\nurbtess 32 33 34 # 35 # Dummy all rule - nmake without target will make all targets of the first rule. 36 # 37 all_: all 38 39 40 # 41 # All, libs, dep and clean rules. 42 # 21 43 clean dep all libs: 22 cd interface 23 $(MAKE_CMD) $@ 24 cd ..\internals 25 $(MAKE_CMD) $@ 26 cd ..\nurbtess 27 $(MAKE_CMD) $@ 28 cd .. 29 44 $(DODIRS) "$(SUBDIRS)" $(MAKE_CMD) $@ -
trunk/src/opengl/glu/nurbs/nurbtess/makefile
r3031 r4624 1 # $Id: makefile,v 1. 4 2000-03-06 23:33:49bird Exp $1 # $Id: makefile,v 1.5 2000-11-19 08:58:14 bird Exp $ 2 2 3 3 # … … 7 7 # 8 8 9 10 # 9 11 # Directory macros. 12 # 10 13 PDWIN32_INCLUDE = ..\..\..\..\..\include 11 14 PDWIN32_LIB = ..\..\..\..\..\lib … … 14 17 15 18 16 # Local cleanup only. 17 LOCALCLEAN = 1 19 # 20 # Tell buildenvironmet to build an object library and to invoke additional dep rule. 21 # 22 LIBTARGET = 1 23 ADDITIONAL_DEP = mydep 18 24 19 25 26 # 20 27 # Compiler, tools, and interference rules. 28 # 21 29 !include $(PDWIN32_INCLUDE)/pdwin32.mk 22 30 23 31 24 # Flag overloads and local macros. 25 CLEANEXTRAS = 26 27 CINCLUDE = -I..\internals -I..\nurbtess -I..\..\..\mesa\GL -I..\..\include 28 CFLAGS = $(CFLAGS) $(CINCLUDE) -DNDEBUG 29 CXXFLAGS = $(CXXFLAGS) $(CINCLUDE) -DNDEBUG 32 # 33 # Flag overloads. 34 # 35 CINCLUDES = $(CINCLUDES) -I..\internals -I..\nurbtess -I..\..\..\mesa\GL -I..\..\include 36 CDEFINES = $(CDEFINES) -DNDEBUG 30 37 31 38 32 # Object files. All objects should be prefixed with $(OBJDIR)! 39 # 40 # Object files. Prefix with OBJDIR and one space before the '\'. 41 # 33 42 OBJS = \ 34 43 $(OBJDIR)\directedLine.obj \ … … 53 62 54 63 64 # 55 65 # Target name - name of the library without extention and path. 66 # 56 67 TARGET = nurbtess 57 68 58 69 59 # Create all libraries (not importlibraries) 60 all: $(OBJDIR) \ 61 $(OBJDIR)\$(TARGET).lib 70 # 71 # Includes the common rules. 72 # 73 !include $(PDWIN32_INCLUDE)/pdwin32.post 62 74 63 75 64 # Create all libraries (not importlibraries) 65 libs: all 66 67 68 # Lib rule - build importlibrary (and evt. other libs) 69 $(OBJDIR)\$(TARGET).lib: $(OBJS) 70 $(RM) $@ 71 $(ILIB) $(ILIBFLAGS) $@ $(OBJS); 72 73 74 # Dep rule - makes depenencies for C, C++ and Asm files. 75 dep: 76 $(DEPEND) $(CINCLUDE) *.c *.cpp *.h *.asm *.inc \ 76 # 77 # Additional dep rule - adds dependencies for some additional headers. 78 # 79 mydep: 80 $(DEPEND) -a $(CINCLUDES) \ 77 81 ..\..\mesa\*.h ..\nurbtess\*.h ..\internals\*.h ..\..\include\*.h 78 82 79 80 # Includes the common rules.81 !include $(PDWIN32_INCLUDE)/pdwin32.post82
Note:
See TracChangeset
for help on using the changeset viewer.