Changeset 4624 for trunk/src/opengl/glu/tess
- Timestamp:
- Nov 19, 2000, 10:27:40 AM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/opengl/glu/tess/makefile
r3031 r4624 1 # $Id: makefile,v 1. 4 2000-03-06 23:33:50bird Exp $1 # $Id: makefile,v 1.5 2000-11-19 08:58:14 bird Exp $ 2 2 3 3 # … … 7 7 # 8 8 9 # 9 10 # Directory macros. 11 # 10 12 PDWIN32_INCLUDE = ..\..\..\..\include 11 13 PDWIN32_LIB = ..\..\..\..\lib … … 14 16 15 17 16 # Local cleanup only. 17 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 18 23 19 24 25 # 20 26 # Compiler, tools, and interference rules. 27 # 21 28 !include $(PDWIN32_INCLUDE)/pdwin32.mk 22 29 23 30 24 # Flag overloads and local macros.25 CLEANEXTRAS = 26 27 CINCLUDE =-I.. -I..\..\mesa -I..\include -I..\..\mesa\GL28 CDEF S = -DNDEBUG -Tdp29 CFLAGS = $(CFLAGS) $(CINCLUDE) $(CDEFS) -DNDEBUG30 CXXFLAGS = $(CXXFLAGS) $(CINCLUDE) -$(CDEFS) -DNDEBUG31 # 32 # Flag overloads. 33 # 34 CINCLUDES = $(CINCLUDES) -I.. -I..\..\mesa -I..\include -I..\..\mesa\GL 35 CDEFINES = $(CDEFINES) -DNDEBUG 36 CFLAGS = $(CFLAGS) -Tdp 37 CXXFLAGS = $(CXXFLAGS) -Tdp 31 38 32 39 33 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)\dict.obj \ … … 46 54 47 55 56 # 48 57 # Target name - name of the library without extention and path. 58 # 49 59 TARGET = tess 50 60 51 61 52 # Create all libraries (not importlibraries) 53 all: $(OBJDIR) \ 54 $(OBJDIR)\$(TARGET).lib 62 # 63 # Includes the common rules. 64 # 65 !include $(PDWIN32_INCLUDE)/pdwin32.post 55 66 56 67 57 # Create all libraries (not importlibraries) 58 libs: all 59 60 61 # Lib rule - build importlibrary (and evt. other libs) 62 $(OBJDIR)\$(TARGET).lib: $(OBJS) 63 $(RM) $@ 64 $(ILIB) $(ILIBFLAGS) $@ $(OBJS); 65 66 67 # Dep rule - makes depenencies for C, C++ and Asm files. 68 dep: 69 $(DEPEND) $(CINCLUDE) *.c *.cpp *.h *.asm *.inc \ 68 # 69 # Additional dep rule - adds dependencies for some additional headers. 70 # 71 mydep: 72 $(DEPEND) -a $(CINCLUDES) \ 70 73 ..\..\mesa\*.h ..\*.h ..\include\*.h 71 74 72 73 # Includes the common rules.74 !include $(PDWIN32_INCLUDE)/pdwin32.post75
Note:
See TracChangeset
for help on using the changeset viewer.