Changeset 3031 for trunk/src/opengl/glide/cvg/init
- Timestamp:
- Mar 7, 2000, 12:39:20 AM (26 years ago)
- Location:
- trunk/src/opengl/glide/cvg/init
- Files:
-
- 1 added
- 1 deleted
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/opengl/glide/cvg/init/makefile
r2888 r3031 1 # $Id: makefile,v 1. 1 2000-02-25 00:37:52 sandervlExp $1 # $Id: makefile,v 1.2 2000-03-06 23:33:44 bird Exp $ 2 2 # 3 3 # PD-Win32 API 4 4 # 5 # Glidemakefile5 # Init makefile 6 6 # 7 7 8 # Directory macros. 8 9 PDWIN32_INCLUDE = ..\..\..\..\..\include 9 10 PDWIN32_LIB = ..\..\..\..\..\lib 10 PDWIN32_BIN = ..\..\..\..\..\ bin11 PDWIN32_BIN = ..\..\..\..\..\$(OBJDIR) 11 12 PDWIN32_TOOLS = ..\..\..\..\..\tools\bin 12 13 14 15 # Compiler, tools, and interference rules. 16 LOCALCLEAN = 1 13 17 !include $(PDWIN32_INCLUDE)/pdwin32.mk 14 18 !include ..\3dfx.mak 15 19 16 TARGET=init 20 # Flag overloads and local macros. 21 CLEANEXTRAS = 17 22 18 CINCLUDE=-I..\incsrc;..\..\swlibs\fxmisc;..\glide;..\texus;..\..\swlibs\pcilib 23 CINCLUDE = -I..\incsrc;..\..\swlibs\fxmisc;..\glide;..\texus;..\..\swlibs\pcilib 24 CFLAGS = $(CFLAGS) $(CINCLUDE) 25 CXXFLAGS = $(CXXFLAGS) $(CINCLUDE) 19 26 20 CFLAGS = $(CFLAGS) $(CINCLUDE)21 CXXFLAGS = $(CXXFLAGS) $(CINCLUDE)22 27 23 OBJS = DAC.OBJ GAMMA.OBJ GDEBUG.OBJ INFO.OBJ PARSE.OBJ \ 24 PRINT.OBJ SLI.OBJ SST1INIT.OBJ UTIL.OBJ VIDEO.OBJ 28 # Object files. All objects should be prefixed with $(OBJDIR)! 29 OBJS = \ 30 $(OBJDIR)\DAC.OBJ \ 31 $(OBJDIR)\GAMMA.OBJ \ 32 $(OBJDIR)\GDEBUG.OBJ \ 33 $(OBJDIR)\INFO.OBJ \ 34 $(OBJDIR)\PARSE.OBJ \ 35 $(OBJDIR)\PRINT.OBJ \ 36 $(OBJDIR)\SLI.OBJ \ 37 $(OBJDIR)\SST1INIT.OBJ \ 38 $(OBJDIR)\UTIL.OBJ \ 39 $(OBJDIR)\VIDEO.OBJ 25 40 26 all: $(TARGET).lib27 41 28 $(TARGET).lib: $(OBJS) 29 $(RM) $(TARGET).lib 30 $(ILIB) $(ILIBFLAGS) $(TARGET).lib $(OBJS),, 42 # Target name - name of the dll without extention and path. 43 TARGET = init 44 45 46 # All rule - build objs, target dll, copies dll to bin and makes libs. 47 all: $(OBJDIR) \ 48 $(OBJDIR)\$(TARGET).lib 49 50 51 # Create all libraries (not importlibraries) 52 libs: all 53 54 55 # Lib target rule - builds the library. 56 $(OBJDIR)\$(TARGET).lib: $(OBJS) 57 $(RM) $@ 58 $(ILIB) $(ILIBFLAGS) $@ $(OBJS); 31 59 32 60 33 61 62 # Dep rule - makes depenencies for C, C++ and Asm files. 34 63 dep: 35 64 $(DEPEND) -I$(PDWIN32_INCLUDE);$(PDWIN32_INCLUDE)\win $(CINCLUDE) \ 36 65 *.c *.cpp *.h *.asm *.inc $(PDWIN32_INCLUDE)\*.h \ 37 ..\incsrc\*.h ..\..\swlibs\fxmisc\*.h ..\glide\*.h ..\texus\*.h ..\..\swlibs\pcilib\*.h 66 ..\incsrc\*.h ..\..\swlibs\fxmisc\*.h ..\glide\*.h ..\texus\*.h ..\..\swlibs\pcilib\*.h 38 67 39 !ifndef NODEP40 !include .depend41 !endif42 68 43 clean: 44 $(RM) *.obj *.pch 45 $(RM) *.lib 69 # Includes the common rules. 70 !include $(PDWIN32_INCLUDE)/pdwin32.post 46 71
Note:
See TracChangeset
for help on using the changeset viewer.