Changeset 6918 for trunk/src/opengl/mesa
- Timestamp:
- Oct 1, 2001, 3:42:09 AM (24 years ago)
- Location:
- trunk/src/opengl/mesa
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/opengl/mesa/3dfx/makefile
r4731 r6918 1 # $Id: makefile,v 1.1 3 2000-12-03 05:13:02bird Exp $1 # $Id: makefile,v 1.14 2001-10-01 01:40:57 bird Exp $ 2 2 3 3 # … … 41 41 CFLAGS = $(CFLAGS) /Wcnd- /Tdp 42 42 !else 43 !error "Compiler not supported yet!" 43 !ifdef WAT 44 C = $(CXX) 45 CFLAGS = $(CXXFLAGS) 46 !else 47 !error "Compiler is not yet supported." 48 !endif 44 49 !endif 45 50 … … 49 54 # This is BAD! Try make library in parent directory? Problem with different objects. 50 55 # 51 !if ndef WAT56 !if "$(VAC3)" == "1" || "$(VAC36)" == "1" || ("$(WAT)" == "1" && defined(NMAKE)) 52 57 {..}.c{$(OBJDIR)}.obj: 53 $(CC) $(CFLAGS) $(CINCLUDES) $(CDEFINES) - c -Fo$(OBJDIR)\$(@B).obj $<58 $(CC) $(CFLAGS) $(CINCLUDES) $(CDEFINES) -Fo$(OBJDIR)\$(@B).obj $< 54 59 55 60 {..}.asm{$(OBJDIR)}.obj: -
trunk/src/opengl/mesa/makefile
r4719 r6918 1 # $Id: makefile,v 1.1 0 2000-12-02 23:58:37 bird Exp $1 # $Id: makefile,v 1.11 2001-10-01 01:40:57 bird Exp $ 2 2 3 3 # … … 22 22 -DDIVE -DUSE_X86_ASM -DUSE_MMX_ASM -DUSE_3DNOW_ASM_NOT \ 23 23 -DFAST_MATH 24 # kso: BUGBUG/TODO/FIXME 25 # this configuration looks fishy to me. 26 # is exceptions enabled or not??? 27 # 28 !if "$(VAC3)" == "1" || "$(VAC36)" == "1" 24 29 CFLAGS = $(CFLAGS_WIN32APP) /Wcnd- -Tdp 25 30 CXXFLAGS = $(CFLAGS_WIN32APP) /Wcnd- -Tdp 31 !else 26 32 !ifdef WAT 27 !error "Compiler not supported yet!" 33 C = $(CXX) 34 CFLAGS = $(CFLAGS_WIN32APP) 35 CXXFLAGS = $(CFLAGS_WIN32APP) 36 !else 37 !error "Compiler is not yet supported." 38 !endif 28 39 !endif 29 40
Note:
See TracChangeset
for help on using the changeset viewer.