- Timestamp:
- Dec 3, 2000, 12:59:51 AM (25 years ago)
- Location:
- trunk/src
- Files:
-
- 5 added
- 5 deleted
- 35 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/opengl/glu/nurbs/interface/makefile
r4624 r4719 1 # $Id: makefile,v 1.7 2000-11-19 08:58:13 bird Exp $ 1 # $Id: makefile,v 1.8 2000-12-02 23:59:44 bird Exp $ 2 2 3 # 3 # PD-Win32 API4 # Odin32 API 4 5 # 5 6 # glu/nurbs/interface makefile 6 7 # 7 8 9 #10 # Directory macros.11 #12 PDWIN32_INCLUDE = ..\..\..\..\..\include13 PDWIN32_LIB = ..\..\..\..\..\lib14 PDWIN32_BIN = ..\..\..\..\..\$(OBJDIR)15 PDWIN32_TOOLS = ..\..\..\..\..\tools\bin16 8 17 9 … … 26 18 # Compiler, tools, and interference rules. 27 19 # 28 !include $(PDWIN32_INCLUDE)/pdwin32.mk20 !include ../../../../../makefile.inc 29 21 30 22 … … 61 53 # Includes the common rules. 62 54 # 63 !include $( PDWIN32_INCLUDE)/pdwin32.post55 !include $(ODIN32_POST_INC) 64 56 65 57 -
trunk/src/opengl/glu/nurbs/internals/makefile
r4624 r4719 1 # $Id: makefile,v 1. 6 2000-11-19 08:58:14bird Exp $1 # $Id: makefile,v 1.7 2000-12-02 23:59:51 bird Exp $ 2 2 3 3 # … … 6 6 # glu/nurbs/internals makefile 7 7 # 8 9 10 #11 # Directory macros.12 #13 PDWIN32_INCLUDE = ..\..\..\..\..\include14 PDWIN32_LIB = ..\..\..\..\..\lib15 PDWIN32_BIN = ..\..\..\..\..\$(OBJDIR)16 PDWIN32_TOOLS = ..\..\..\..\..\tools\bin17 8 18 9 … … 27 18 # Compiler, tools, and interference rules. 28 19 # 29 !include $(PDWIN32_INCLUDE)/pdwin32.mk20 !include ../../../../../makefile.inc 30 21 31 22 … … 35 26 CINCLUDES = $(CINCLUDES) -I..\internals -I..\nurbtess -I..\..\..\mesa\GL -I..\..\include 36 27 CDEFINES = $(CDEFINES) -DSTANDALONE -DLIBRARYBUILD -DNDEBUG 28 !if "$(VAC3)" == "1" || "$(VAC36)" == "1" 37 29 CFLAGS = $(CFLAGS) -O- 30 !endif 38 31 39 32 … … 98 91 # Includes the common rules. 99 92 # 100 !include $( PDWIN32_INCLUDE)/pdwin32.post93 !include $(ODIN32_POST_INC) 101 94 102 95 -
trunk/src/opengl/glu/tess/makefile
r4624 r4719 1 # $Id: makefile,v 1. 5 2000-11-19 08:58:14bird Exp $1 # $Id: makefile,v 1.6 2000-12-02 23:59:13 bird Exp $ 2 2 3 3 # … … 6 6 # glu/tess makefile 7 7 # 8 9 #10 # Directory macros.11 #12 PDWIN32_INCLUDE = ..\..\..\..\include13 PDWIN32_LIB = ..\..\..\..\lib14 PDWIN32_BIN = ..\..\..\..\$(OBJDIR)15 PDWIN32_TOOLS = ..\..\..\..\tools\bin16 8 17 9 … … 26 18 # Compiler, tools, and interference rules. 27 19 # 28 !include $(PDWIN32_INCLUDE)/pdwin32.mk20 !include ../../../../makefile.inc 29 21 30 22 … … 34 26 CINCLUDES = $(CINCLUDES) -I.. -I..\..\mesa -I..\include -I..\..\mesa\GL 35 27 CDEFINES = $(CDEFINES) -DNDEBUG 28 !if "$(VAC3)" == "1" || "$(VAC36)" == "1" 36 29 CFLAGS = $(CFLAGS) -Tdp 37 30 CXXFLAGS = $(CXXFLAGS) -Tdp 31 !else 32 !error "Compiler is not yet supported." 33 !endif 38 34 39 35 … … 63 59 # Includes the common rules. 64 60 # 65 !include $( PDWIN32_INCLUDE)/pdwin32.post61 !include $(ODIN32_POST_INC) 66 62 67 63 -
trunk/src/opengl/glu/util/makefile
r4624 r4719 1 # $Id: makefile,v 1. 5 2000-11-19 08:58:15bird Exp $1 # $Id: makefile,v 1.6 2000-12-02 23:59:06 bird Exp $ 2 2 3 3 # … … 6 6 # glu/util makefile 7 7 # 8 9 10 #11 # Directory macros.12 #13 PDWIN32_INCLUDE = ..\..\..\..\include14 PDWIN32_LIB = ..\..\..\..\lib15 PDWIN32_BIN = ..\..\..\..\$(OBJDIR)16 PDWIN32_TOOLS = ..\..\..\..\tools\bin17 8 18 9 … … 27 18 # Compiler, tools, and interference rules. 28 19 # 29 !include $(PDWIN32_INCLUDE)/pdwin32.mk20 !include ../../../../makefile.inc 30 21 31 22 … … 35 26 CINCLUDES = $(CINCLUDES) -I.. -I..\..\mesa -I..\include -I..\..\mesa\GL 36 27 CDEFINES = $(CDEFINES) -DNDEBUG 28 !if "$(VAC3)" == "1" || "$(VAC36)" == "1" 37 29 CFLAGS = $(CFLAGS) -Tdp 38 30 CXXFLAGS = $(CXXFLAGS) -Tdp 39 ! ifdef WAT31 !else 40 32 !error "Compiler not supported yet!" 41 33 !endif … … 63 55 # Includes the common rules. 64 56 # 65 !include $( PDWIN32_INCLUDE)/pdwin32.post57 !include $(ODIN32_POST_INC) 66 58 67 59 -
trunk/src/opengl/glut/Makefile
r4624 r4719 1 # $Id: Makefile,v 1.1 6 2000-11-19 08:58:15bird Exp $1 # $Id: Makefile,v 1.17 2000-12-02 23:58:44 bird Exp $ 2 2 3 3 # … … 6 6 # glut32.dll makefile 7 7 # 8 9 10 #11 # Directory macros.12 #13 PDWIN32_INCLUDE = ..\..\..\include14 PDWIN32_LIB = ..\..\..\lib15 PDWIN32_BIN = ..\..\..\$(OBJDIR)16 PDWIN32_TOOLS = ..\..\..\tools\bin17 8 18 9 … … 26 17 # Compiler, tools, and interference rules. 27 18 # 28 !include $(PDWIN32_INCLUDE)/pdwin32.mk19 !include ../../../makefile.inc 29 20 30 21 … … 98 89 # 99 90 LIBS = \ 100 $( PDWIN32_LIB)/$(ODINCRT).lib \91 $(ODIN32_LIB)/$(ODINCRT).lib \ 101 92 $(RTLLIB_O) \ 102 $( PDWIN32_LIB)\winmm.lib \103 $( PDWIN32_LIB)\kernel32.lib \104 $( PDWIN32_LIB)\gdi32.lib \105 $( PDWIN32_LIB)\user32.lib \106 $( PDWIN32_LIB)\glu32.lib \107 $( PDWIN32_LIB)\opengl32.lib \93 $(ODIN32_LIB)/winmm.lib \ 94 $(ODIN32_LIB)/kernel32.lib \ 95 $(ODIN32_LIB)/gdi32.lib \ 96 $(ODIN32_LIB)/user32.lib \ 97 $(ODIN32_LIB)/glu32.lib \ 98 $(ODIN32_LIB)/opengl32.lib \ 108 99 os2386.lib 109 100 … … 118 109 # Includes the common rules. 119 110 # 120 !include $( PDWIN32_INCLUDE)/pdwin32.post111 !include $(ODIN32_POST_INC) 121 112 122 113 … … 126 117 mydep: 127 118 $(DEPEND) -a $(CINCLUDES) \ 128 *.c *.cpp *.asm *.inc $( PDWIN32_INCLUDE)\*.h ..\mesa\gl\*.h119 *.c *.cpp *.asm *.inc $(ODIN32_INCLUDE)\*.h ..\mesa\gl\*.h 129 120 -
trunk/src/opengl/mesa/3dfx/makefile
r4624 r4719 1 # $Id: makefile,v 1.11 2000-11-19 08:58:16 bird Exp $ 1 # $Id: makefile,v 1.12 2000-12-02 23:58:37 bird Exp $ 2 2 3 # 3 4 # Odin32 API … … 6 7 # 7 8 8 9 #10 # Directory macros.11 #12 PDWIN32_INCLUDE = ..\..\..\..\include13 PDWIN32_LIB = ..\..\..\..\lib14 PDWIN32_BIN = ..\..\..\..\$(OBJDIR)\Glide15 PDWIN32_TOOLS = ..\..\..\..\tools\bin16 9 17 10 … … 25 18 # Compiler, tools, and interference rules. 26 19 # 27 !include $(PDWIN32_INCLUDE)/pdwin32.mk20 !include ../../../../makefile.inc 28 21 29 22 … … 31 24 # Overrides. 32 25 # 26 ODIN32_BIN = $(ODIN32_BIN__)\Glide 33 27 CINCLUDES = -I.. -I..\GL $(CINCLUDES) -I..\..\glut -I..\..\glide\cvg\glide \ 34 28 -I..\..\glide\swlibs\fxmisc -I..\..\glide\cvg\incsrc … … 38 32 -DFX -DFX_V2 -DFX_SILENT -DBUILD_GL32 -DFAST_MATH 39 33 34 !if "$(VAC3)" == "1" || "$(VAC36)" == "1" 40 35 CFLAGS = $(CFLAGS) /Wcnd- /Tdp 41 ! ifdef WAT36 !else 42 37 !error "Compiler not supported yet!" 43 38 !endif … … 48 43 # This is BAD! Try make library in parent directory? Problem with different objects. 49 44 # 45 !ifndef WAT 50 46 {..}.c{$(OBJDIR)}.obj: 51 47 $(CC) $(CFLAGS) $(CINCLUDES) $(CDEFINES) -c -Fo$(OBJDIR)\$(@B).obj $< … … 53 49 {..}.asm{$(OBJDIR)}.obj: 54 50 $(AS) $(ASFLAGS) -Fdo:$(OBJDIR) $< 51 !else 52 !error "Compiler not supported yet!" 53 !endif 55 54 56 55 … … 163 162 # 164 163 LIBS = \ 165 $( PDWIN32_LIB)/$(ODINCRT).lib \166 $( PDWIN32_LIB)\kernel32.lib \167 $( PDWIN32_LIB)\gdi32.lib \168 $( PDWIN32_LIB)\user32.lib \169 $( PDWIN32_LIB)\glide2x.lib \164 $(ODIN32_LIB)/$(ODINCRT).lib \ 165 $(ODIN32_LIB)/kernel32.lib \ 166 $(ODIN32_LIB)/gdi32.lib \ 167 $(ODIN32_LIB)/user32.lib \ 168 $(ODIN32_LIB)/glide2x.lib \ 170 169 $(RTLLIB_O) \ 171 170 os2386.lib … … 181 180 # Includes the common rules. 182 181 # 183 !include $( PDWIN32_INCLUDE)/pdwin32.post182 !include $(ODIN32_POST_INC) 184 183 185 184 -
trunk/src/opengl/mesa/makefile
r4624 r4719 1 # $Id: makefile,v 1. 9 2000-11-19 08:58:15bird Exp $1 # $Id: makefile,v 1.10 2000-12-02 23:58:37 bird Exp $ 2 2 3 3 # … … 9 9 10 10 # 11 # Directory macros.12 #13 PDWIN32_INCLUDE = ..\..\..\include14 PDWIN32_LIB = ..\..\..\lib15 PDWIN32_BIN = ..\..\..\$(OBJDIR)16 PDWIN32_TOOLS = ..\..\..\tools\bin17 18 19 #20 11 # Compiler, tools, and interference rules. 21 12 # 22 !include $(PDWIN32_INCLUDE)/pdwin32.mk13 !include ../../../makefile.inc 23 14 24 15 … … 134 125 # 135 126 LIBS = \ 136 $( PDWIN32_LIB)/$(ODINCRT).lib \137 $( PDWIN32_LIB)\kernel32.lib \138 $( PDWIN32_LIB)\gdi32.lib \139 $( PDWIN32_LIB)\user32.lib \127 $(ODIN32_LIB)/$(ODINCRT).lib \ 128 $(ODIN32_LIB)\kernel32.lib \ 129 $(ODIN32_LIB)\gdi32.lib \ 130 $(ODIN32_LIB)\user32.lib \ 140 131 $(RTLLIB_O) \ 141 132 os2386.lib \ … … 152 143 # Includes the common rules. 153 144 # 154 !include $(PDWIN32_INCLUDE)/pdwin32.post 155 156 157 # 158 # Libs rule to support objectlibrary used by 3dxf. 159 # 160 libs: $(OBJDIR)\$(TARGET).lib 161 162 163 # 164 # Internal objectlibrary rule. 165 # 166 $(OBJDIR)\$(TARGET).lib: $(OBJS) 167 !if "$(VAC3)" == "1" | "$(VAC36)" == "1" 168 $(RM) $(OBJDIR)\$(TARGET) 169 $(ILIB) $(ILIBFLAGS) $@ @<< 170 $(OBJS: = &^ 171 ) 172 $(OBJDIR)\$(@B).lst 173 << 174 !else 175 ! error "Compiler is not yet supported." 176 !endif 145 !include $(ODIN32_POST_INC) 177 146 178 147 -
trunk/src/pe2lx/makefile
r3031 r4719 1 # $Id: makefile,v 1.1 0 2000-03-06 23:38:55bird Exp $1 # $Id: makefile,v 1.11 2000-12-02 23:58:01 bird Exp $ 2 2 3 3 # … … 9 9 # 10 10 11 PDWIN32_INCLUDE = ..\..\include 12 PDWIN32_LIB = ..\..\lib 13 PDWIN32_BIN = ..\..\bin 11 OLD_STYLE=1 12 !include ../../makefile.inc 14 13 15 14 16 !include $(PDWIN32_INCLUDE)/pdwin32.mk 17 18 19 CFLAGS = $(CFLAGS) /Ge+ /Tm+ /I$(PDWIN32_INCLUDE) /D__PE2LX__ 20 CXXFLAGS = $(CXXFLAGS) -Ge+ /Tm+ /I$(PDWIN32_INCLUDE) /D__PE2LX__ 15 CFLAGS = $(CFLAGS) /Ge+ /Tm+ /I$(ODIN32_INCLUDE) /D__PE2LX__ 16 CXXFLAGS = $(CXXFLAGS) -Ge+ /Tm+ /I$(ODIN32_INCLUDE) /D__PE2LX__ 21 17 LDFLAGS = $(LDFLAGS) -Ge+ 22 18 … … 34 30 $(TARGET).exe: $(OBJS) 35 31 $(LD) $(LDFLAGS) -Fe$@ $(OBJS) \ 36 $( PDWIN32_LIB)\LIBCONV.LIB $(PDWIN32_LIB)/odincrt.lib OS2386.LIB $(RTLLIB_O)37 $(CP) $(TARGET).exe $( PDWIN32_BIN)32 $(ODIN32_LIB)\LIBCONV.LIB $(ODIN32_LIB)/odincrt.lib OS2386.LIB $(RTLLIB_O) 33 $(CP) $(TARGET).exe $(ODIN32_BIN) 38 34 39 35 40 accelerator.obj: accelerator.cpp $( PDWIN32_INCLUDE)\pefile.h lx.h \36 accelerator.obj: accelerator.cpp $(ODIN32_INCLUDE)\pefile.h lx.h \ 41 37 accelerator.h icon.h misc.h 42 bitmap.obj: bitmap.cpp $( PDWIN32_INCLUDE)\pefile.h lx.h \38 bitmap.obj: bitmap.cpp $(ODIN32_INCLUDE)\pefile.h lx.h \ 43 39 bitmap.h icon.h misc.h 44 cursor.obj: cursor.cpp $( PDWIN32_INCLUDE)\pefile.h lx.h \40 cursor.obj: cursor.cpp $(ODIN32_INCLUDE)\pefile.h lx.h \ 45 41 cursor.h icon.h misc.h 46 cursorgrp.obj: cursorgrp.cpp $( PDWIN32_INCLUDE)\pefile.h lx.h \42 cursorgrp.obj: cursorgrp.cpp $(ODIN32_INCLUDE)\pefile.h lx.h \ 47 43 cursor.h cursorgrp.h misc.h 48 dialog.obj: dialog.cpp $( PDWIN32_INCLUDE)\pefile.h lx.h \44 dialog.obj: dialog.cpp $(ODIN32_INCLUDE)\pefile.h lx.h \ 49 45 dialog.h misc.h 50 icon.obj: icon.cpp $( PDWIN32_INCLUDE)\pefile.h lx.h icon.h misc.h51 icongrp.obj: icongrp.cpp $( PDWIN32_INCLUDE)\pefile.h lx.h icon.h \46 icon.obj: icon.cpp $(ODIN32_INCLUDE)\pefile.h lx.h icon.h misc.h 47 icongrp.obj: icongrp.cpp $(ODIN32_INCLUDE)\pefile.h lx.h icon.h \ 52 48 icongrp.h misc.h 53 49 lx.obj: lx.cpp lx.h 54 menu.obj: menu.cpp $( PDWIN32_INCLUDE)\pefile.h lx.h menu.h55 misc.obj: misc.cpp $( PDWIN32_INCLUDE)\pefile.h lx.h ..\..\include\versionos2.h56 pe.obj: pe.cpp $( PDWIN32_INCLUDE)\pefile.h lx.h \50 menu.obj: menu.cpp $(ODIN32_INCLUDE)\pefile.h lx.h menu.h 51 misc.obj: misc.cpp $(ODIN32_INCLUDE)\pefile.h lx.h ..\..\include\versionos2.h 52 pe.obj: pe.cpp $(ODIN32_INCLUDE)\pefile.h lx.h \ 57 53 accelerator.h bitmap.h cursor.h \ 58 54 cursorgrp.h dialog.h icon.h \ 59 55 icongrp.h menu.h misc.h rcdata.h \ 60 56 strings.h 61 pefile.obj: pefile.cpp $( PDWIN32_INCLUDE)\pefile.h misc.h57 pefile.obj: pefile.cpp $(ODIN32_INCLUDE)\pefile.h misc.h 62 58 rcdata.obj: rcdata.cpp lx.h rcdata.h 63 59 strings.obj: strings.cpp lx.h misc.h strings.h … … 66 62 clean: 67 63 $(RM) *.obj *.lib *.dll *~ *.map *.pch *.exe 68 $(RM) $( PDWIN32_BIN)\$(TARGET).exe64 $(RM) $(ODIN32_BIN)\$(TARGET).exe -
trunk/src/pe2lx/makefile.wat
r272 r4719 1 # $Id: makefile.wat,v 1. 3 1999-07-05 12:36:12 sandervlExp $1 # $Id: makefile.wat,v 1.4 2000-12-02 23:58:01 bird Exp $ 2 2 3 3 #=================================================================== … … 6 6 # 7 7 #=================================================================== 8 PDWIN32_INCLUDE = ..\..\include9 PDWIN32_LIB = ..\..\lib10 PDWIN32_BIN = ..\..\bin8 ODIN32_INCLUDE = ..\..\include 9 ODIN32_LIB = ..\..\lib 10 ODIN32_BIN = ..\..\bin 11 11 INC = $(%WATCOM)\h;f:\toolkit\h;.;..\..\include;..\..\include\win 12 12 DEF = … … 62 62 FILE5 = accelerator.obj 63 63 FILE6 = cursor.obj cursorgrp.obj 64 FILE7 = $( PDWIN32_LIB)\LIBCONV.LIB64 FILE7 = $(ODIN32_LIB)\LIBCONV.LIB 65 65 FILE8 = 66 66 FILE9 = -
trunk/src/peldr/makefile
r4624 r4719 1 # $Id: makefile,v 1.1 8 2000-11-19 08:57:04bird Exp $1 # $Id: makefile,v 1.19 2000-12-02 23:57:55 bird Exp $ 2 2 3 3 # … … 11 11 # Compiler, tools, and interference rules. 12 12 # 13 !include ../../ include/pdwin32.mk13 !include ../../makefile.inc 14 14 15 15 -
trunk/src/peldr/pe.mak
r4634 r4719 1 # $Id: pe.mak,v 1. 2 2000-11-19 20:55:24 sandervlExp $1 # $Id: pe.mak,v 1.3 2000-12-02 23:57:55 bird Exp $ 2 2 3 3 # … … 11 11 # 12 12 EXETARGET = 1 13 MAKEFILE = pe.mak 13 14 14 15 … … 16 17 # Compiler, tools, and interference rules. 17 18 # 18 !include ../../ include/pdwin32.mk19 !include ../../makefile.inc 19 20 20 21 … … 40 41 # 41 42 LIBS = \ 42 $( PDWIN32_LIB)/$(ODINCRT).lib \43 $(ODIN32_LIB)/$(ODINCRT).lib \ 43 44 $(RTLLIB_O) \ 44 os2386.lib 45 os2386.lib 45 46 46 47 … … 54 55 # Includes the common rules. 55 56 # 56 !include $( PDWIN32_INCLUDE)/pdwin32.post57 !include $(ODIN32_POST_INC) 57 58 -
trunk/src/peldr/pec.mak
r4634 r4719 1 # $Id: pec.mak,v 1. 2 2000-11-19 20:55:25 sandervlExp $1 # $Id: pec.mak,v 1.3 2000-12-02 23:57:55 bird Exp $ 2 2 3 3 # … … 11 11 # 12 12 EXETARGET = 1 13 MAKEFILE = pec.mak 13 14 14 15 … … 16 17 # Compiler, tools, and interference rules. 17 18 # 18 !include ../../ include/pdwin32.mk19 !include ../../makefile.inc 19 20 20 21 … … 40 41 # 41 42 LIBS = \ 42 $( PDWIN32_LIB)/$(ODINCRT).lib \43 $(ODIN32_LIB)/$(ODINCRT).lib \ 43 44 $(RTLLIB_O) \ 44 45 os2386.lib … … 54 55 # Includes the common rules. 55 56 # 56 !include $( PDWIN32_INCLUDE)/pdwin32.post57 !include $(ODIN32_POST_INC) 57 58 58 59 -
trunk/src/psapi/makefile
r4624 r4719 1 # $Id: makefile,v 1.1 0 2000-11-19 08:53:32bird Exp $1 # $Id: makefile,v 1.11 2000-12-02 23:57:47 bird Exp $ 2 2 3 3 # … … 11 11 # Compiler, tools, and interference rules. 12 12 # 13 !include ../../ include/pdwin32.mk13 !include ../../makefile.inc 14 14 15 15 … … 27 27 # 28 28 LIBS = \ 29 $( PDWIN32_LIB)/kernel32.lib \30 $( PDWIN32_LIB)/$(ODINCRT).lib \29 $(ODIN32_LIB)/kernel32.lib \ 30 $(ODIN32_LIB)/$(ODINCRT).lib \ 31 31 OS2386.LIB \ 32 32 $(RTLLIB_O) … … 42 42 # Includes the common rules. 43 43 # 44 !include $( PDWIN32_INCLUDE)/pdwin32.post44 !include $(ODIN32_POST_INC) 45 45 -
trunk/src/rasapi32/makefile
r4624 r4719 1 # $Id: makefile,v 1.1 1 2000-11-19 08:51:45bird Exp $1 # $Id: makefile,v 1.12 2000-12-02 23:57:41 bird Exp $ 2 2 3 3 # … … 11 11 # Compiler, tools, and interference rules. 12 12 # 13 !include ../../ include/pdwin32.mk13 !include ../../makefile.inc 14 14 15 15 … … 27 27 # 28 28 LIBS = \ 29 $( PDWIN32_LIB)/kernel32.lib \30 $( PDWIN32_LIB)/$(ODINCRT).lib \29 $(ODIN32_LIB)/kernel32.lib \ 30 $(ODIN32_LIB)/$(ODINCRT).lib \ 31 31 OS2386.LIB \ 32 32 $(RTLLIB_O) … … 42 42 # Includes the common rules. 43 43 # 44 !include $( PDWIN32_INCLUDE)/pdwin32.post44 !include $(ODIN32_POST_INC) 45 45 -
trunk/src/riched32/makefile
r4624 r4719 1 # $Id: makefile,v 1. 3 2000-11-19 08:51:27bird Exp $1 # $Id: makefile,v 1.4 2000-12-02 23:57:35 bird Exp $ 2 2 3 3 # … … 11 11 # Compiler, tools, and interference rules. 12 12 # 13 !include ../../ include/pdwin32.mk13 !include ../../makefile.inc 14 14 15 15 … … 36 36 # 37 37 LIBS = \ 38 $( PDWIN32_LIB)/kernel32.lib \39 $( PDWIN32_LIB)/user32.lib \40 $( PDWIN32_LIB)/$(ODINCRT).lib \38 $(ODIN32_LIB)/kernel32.lib \ 39 $(ODIN32_LIB)/user32.lib \ 40 $(ODIN32_LIB)/$(ODINCRT).lib \ 41 41 OS2386.LIB \ 42 42 $(RTLLIB_O) … … 52 52 # Includes the common rules. 53 53 # 54 !include $( PDWIN32_INCLUDE)/pdwin32.post54 !include $(ODIN32_POST_INC) 55 55 -
trunk/src/rpcrt4/makefile
r4624 r4719 1 # $Id: makefile,v 1. 4 2000-11-19 08:50:47bird Exp $1 # $Id: makefile,v 1.5 2000-12-02 23:57:29 bird Exp $ 2 2 3 3 # … … 11 11 # Compiler, tools, and interference rules. 12 12 # 13 !include ../../ include/pdwin32.mk13 !include ../../makefile.inc 14 14 15 15 … … 33 33 # 34 34 LIBS = \ 35 $( PDWIN32_LIB)/kernel32.lib \36 $( PDWIN32_LIB)/$(ODINCRT).lib \35 $(ODIN32_LIB)/kernel32.lib \ 36 $(ODIN32_LIB)/$(ODINCRT).lib \ 37 37 OS2386.LIB \ 38 38 so32dll.lib \ … … 49 49 # Includes the common rules. 50 50 # 51 !include $( PDWIN32_INCLUDE)/pdwin32.post51 !include $(ODIN32_POST_INC) 52 52 -
trunk/src/shell32/makefile
r4691 r4719 1 # $Id: makefile,v 1.3 1 2000-11-24 13:19:12 sandervlExp $1 # $Id: makefile,v 1.32 2000-12-02 23:57:22 bird Exp $ 2 2 3 3 # … … 11 11 # Compiler, tools, and interference rules. 12 12 # 13 !include ../../ include/pdwin32.mk13 !include ../../makefile.inc 14 14 15 15 … … 66 66 # 67 67 LIBS = \ 68 $( PDWIN32_LIB)/kernel32.lib \69 $( PDWIN32_LIB)/user32.lib \70 $( PDWIN32_LIB)/advapi32.lib \71 $( PDWIN32_LIB)/gdi32.lib \72 $( PDWIN32_LIB)/ole32.lib \73 $( PDWIN32_LIB)/version.lib \74 $( PDWIN32_LIB)/comctl32.lib \75 $( PDWIN32_LIB)/$(ODINCRT).lib \76 $( PDWIN32_LIB)/pmwinx.lib \77 $( PDWIN32_LIB)/shlwapi.lib \68 $(ODIN32_LIB)/kernel32.lib \ 69 $(ODIN32_LIB)/user32.lib \ 70 $(ODIN32_LIB)/advapi32.lib \ 71 $(ODIN32_LIB)/gdi32.lib \ 72 $(ODIN32_LIB)/ole32.lib \ 73 $(ODIN32_LIB)/version.lib \ 74 $(ODIN32_LIB)/comctl32.lib \ 75 $(ODIN32_LIB)/$(ODINCRT).lib \ 76 $(ODIN32_LIB)/pmwinx.lib \ 77 $(ODIN32_LIB)/shlwapi.lib \ 78 78 OS2386.LIB \ 79 79 $(RTLLIB_O) … … 89 89 # Includes the common rules. 90 90 # 91 !include $( PDWIN32_INCLUDE)/pdwin32.post91 !include $(ODIN32_POST_INC) 92 92 -
trunk/src/shell32/old/makefile
r1213 r4719 1 # $Id: makefile,v 1. 1 1999-10-09 11:11:30 sandervlExp $1 # $Id: makefile,v 1.2 2000-12-02 23:57:22 bird Exp $ 2 2 3 3 # 4 # PD-Win32 API4 # Odin32 API 5 5 # 6 6 # shell32.dll makefile 7 7 # 8 8 9 PDWIN32_INCLUDE = ..\..\..\include 10 PDWIN32_LIB = ..\..\..\lib 11 PDWIN32_BIN = ..\..\..\bin 12 PDWIN32_TOOLS = ..\..\..\tools\bin 9 !error "don't work?" 13 10 11 OLD_STYLE=1 12 !include ../../../makefile.inc 14 13 15 !include $(PDWIN32_INCLUDE)/pdwin32.mk16 17 18 CFLAGS = $(CFLAGS) -I$(PDWIN32_INCLUDE)19 CXXFLAGS = $(CXXFLAGS) -I$(PDWIN32_INCLUDE)20 14 21 15 … … 30 24 $(TARGET).dll: $(OBJS) $(TARGET).def 31 25 $(LD) $(LDFLAGS) -Fm -Fe$@ $(OBJS) $(TARGET).def \ 32 $( PDWIN32_LIB)/pmwinx.lib $(PDWIN32_LIB)/kernel32.lib \33 $( PDWIN32_LIB)/user32.lib $(PDWIN32_LIB)/advapi32.lib \34 $( PDWIN32_LIB)/odincrt.lib OS2386.LIB $(RTLLIB_O)35 $(CP) $@ $( PDWIN32_BIN)26 $(ODIN32_LIB)/pmwinx.lib $(ODIN32_LIB)/kernel32.lib \ 27 $(ODIN32_LIB)/user32.lib $(ODIN32_LIB)/advapi32.lib \ 28 $(ODIN32_LIB)/odincrt.lib OS2386.LIB $(RTLLIB_O) 29 $(CP) $@ $(ODIN32_BIN) 36 30 37 31 38 32 $(TARGET).lib: $(TARGET)exp.def 39 33 $(IMPLIB) $(IMPLIBFLAGS) $@ $(TARGET)exp.def 40 $(CP) $@ $( PDWIN32_LIB)34 $(CP) $@ $(ODIN32_LIB) 41 35 42 36 $(TARGET)exp.def: $(TARGET).def … … 64 58 clean: 65 59 $(RM) *.obj *.lib *.dll *~ *.map *.pch 66 $(RM) $( PDWIN32_BIN)\$(TARGET).dll67 $(RM) $( PDWIN32_LIB)\$(TARGET).lib60 $(RM) $(ODIN32_BIN)\$(TARGET).dll 61 $(RM) $(ODIN32_LIB)\$(TARGET).lib 68 62 69 63 -
trunk/src/shfolder/makefile
r4624 r4719 1 # $Id: makefile,v 1. 3 2000-11-19 08:49:45 bird Exp $1 # $Id: makefile,v 1.4 2000-12-02 23:57:15 bird Exp $ 2 2 3 3 # … … 11 11 # Compiler, tools, and interference rules. 12 12 # 13 !include ../../ include/pdwin32.mk13 !include ../../makefile.inc 14 14 15 15 … … 26 26 # 27 27 LIBS = \ 28 $( PDWIN32_LIB)/kernel32.lib \29 $( PDWIN32_LIB)/user32.lib \30 $( PDWIN32_LIB)/shell32.lib \31 $( PDWIN32_LIB)/$(ODINCRT).lib \28 $(ODIN32_LIB)/kernel32.lib \ 29 $(ODIN32_LIB)/user32.lib \ 30 $(ODIN32_LIB)/shell32.lib \ 31 $(ODIN32_LIB)/$(ODINCRT).lib \ 32 32 OS2386.LIB \ 33 33 $(RTLLIB_O) … … 43 43 # Includes the common rules. 44 44 # 45 !include $( PDWIN32_INCLUDE)/pdwin32.post45 !include $(ODIN32_POST_INC) 46 46 -
trunk/src/shlwapi/makefile
r4624 r4719 1 # $Id: makefile,v 1. 19 2000-11-19 08:49:02bird Exp $1 # $Id: makefile,v 1.20 2000-12-02 23:57:08 bird Exp $ 2 2 3 3 # … … 11 11 # Compiler, tools, and interference rules. 12 12 # 13 !include ../../ include/pdwin32.mk13 !include ../../makefile.inc 14 14 15 15 … … 37 37 # 38 38 LIBS = \ 39 $( PDWIN32_LIB)/kernel32.lib \40 $( PDWIN32_LIB)/user32.lib \41 $( PDWIN32_LIB)/gdi32.lib \42 $( PDWIN32_LIB)/crtdll.lib \43 $( PDWIN32_LIB)/$(ODINCRT).lib \39 $(ODIN32_LIB)/kernel32.lib \ 40 $(ODIN32_LIB)/user32.lib \ 41 $(ODIN32_LIB)/gdi32.lib \ 42 $(ODIN32_LIB)/crtdll.lib \ 43 $(ODIN32_LIB)/$(ODINCRT).lib \ 44 44 OS2386.LIB \ 45 45 $(RTLLIB_O) … … 55 55 # Includes the common rules. 56 56 # 57 !include $( PDWIN32_INCLUDE)/pdwin32.post57 !include $(ODIN32_POST_INC) 58 58 -
trunk/src/tapi32/makefile
r4624 r4719 1 # $Id: makefile,v 1.1 6 2000-11-19 08:48:32 bird Exp $1 # $Id: makefile,v 1.17 2000-12-02 23:57:02 bird Exp $ 2 2 3 3 # … … 11 11 # Compiler, tools, and interference rules. 12 12 # 13 !include ../../ include/pdwin32.mk13 !include ../../makefile.inc 14 14 15 15 … … 27 27 # 28 28 LIBS = \ 29 $( PDWIN32_LIB)/kernel32.lib \30 $( PDWIN32_LIB)/user32.lib \31 $( PDWIN32_LIB)/$(ODINCRT).lib \29 $(ODIN32_LIB)/kernel32.lib \ 30 $(ODIN32_LIB)/user32.lib \ 31 $(ODIN32_LIB)/$(ODINCRT).lib \ 32 32 OS2386.LIB \ 33 33 $(RTLLIB_O) … … 43 43 # Includes the common rules. 44 44 # 45 !include $( PDWIN32_INCLUDE)/pdwin32.post45 !include $(ODIN32_POST_INC) 46 46 -
trunk/src/twain_32/makefile
r4624 r4719 1 # $Id: makefile,v 1. 7 2000-11-19 08:47:57bird Exp $1 # $Id: makefile,v 1.8 2000-12-02 23:56:55 bird Exp $ 2 2 3 3 # … … 11 11 # Compiler, tools, and interference rules. 12 12 # 13 !include ../../ include/pdwin32.mk13 !include ../../makefile.inc 14 14 15 15 … … 33 33 # 34 34 LIBS = \ 35 $( PDWIN32_LIB)/kernel32.lib \36 $( PDWIN32_LIB)/user32.lib \37 $( PDWIN32_LIB)/$(ODINCRT).lib \38 $( PDWIN32_LIB)/pmwinx.lib \35 $(ODIN32_LIB)/kernel32.lib \ 36 $(ODIN32_LIB)/user32.lib \ 37 $(ODIN32_LIB)/$(ODINCRT).lib \ 38 $(ODIN32_LIB)/pmwinx.lib \ 39 39 OS2386.LIB \ 40 40 $(RTLLIB_O) … … 50 50 # Includes the common rules. 51 51 # 52 !include $( PDWIN32_INCLUDE)/pdwin32.post52 !include $(ODIN32_POST_INC) 53 53 -
trunk/src/urlmon/makefile
r4622 r4719 1 # $Id: makefile,v 1. 3 2000-11-19 08:40:22bird Exp $1 # $Id: makefile,v 1.4 2000-12-02 23:56:48 bird Exp $ 2 2 3 3 # … … 11 11 # Compiler, tools, and interference rules. 12 12 # 13 !include ../../ include/pdwin32.mk13 !include ../../makefile.inc 14 14 15 15 … … 28 28 # 29 29 LIBS = \ 30 $( PDWIN32_LIB)/kernel32.lib \31 $( PDWIN32_LIB)/ole32.lib \32 $( PDWIN32_LIB)/$(ODINCRT).lib \30 $(ODIN32_LIB)/kernel32.lib \ 31 $(ODIN32_LIB)/ole32.lib \ 32 $(ODIN32_LIB)/$(ODINCRT).lib \ 33 33 OS2386.LIB \ 34 34 $(RTLLIB_O) … … 44 44 # Includes the common rules. 45 45 # 46 !include $( PDWIN32_INCLUDE)/pdwin32.post46 !include $(ODIN32_POST_INC) 47 47 -
trunk/src/user32/Makefile
r4622 r4719 1 # $Id: Makefile,v 1.7 6 2000-11-19 08:40:22 bird Exp $1 # $Id: Makefile,v 1.77 2000-12-02 23:56:42 bird Exp $ 2 2 3 3 # … … 11 11 # Compiler, tools, and interference rules. 12 12 # 13 !include ../../ include/pdwin32.mk13 !include ../../makefile.inc 14 14 15 15 … … 98 98 # 99 99 LIBS = \ 100 $( PDWIN32_LIB)/gdi32.lib \101 $( PDWIN32_LIB)/pmwinx.lib \102 $( PDWIN32_LIB)/kernel32.lib \103 $( PDWIN32_LIB)/libuls.lib \104 $( PDWIN32_LIB)/$(ODINCRT).lib \100 $(ODIN32_LIB)/gdi32.lib \ 101 $(ODIN32_LIB)/pmwinx.lib \ 102 $(ODIN32_LIB)/kernel32.lib \ 103 $(ODIN32_LIB)/libuls.lib \ 104 $(ODIN32_LIB)/$(ODINCRT).lib \ 105 105 OS2386.LIB \ 106 106 $(RTLLIB_O) … … 116 116 # Includes the common rules. 117 117 # 118 !include $( PDWIN32_INCLUDE)/pdwin32.post118 !include $(ODIN32_POST_INC) 119 119 -
trunk/src/version/makefile
r4622 r4719 1 # $Id: makefile,v 1.1 6 2000-11-19 08:39:49bird Exp $1 # $Id: makefile,v 1.17 2000-12-02 23:56:35 bird Exp $ 2 2 3 3 # … … 11 11 # Compiler, tools, and interference rules. 12 12 # 13 !include ../../ include/pdwin32.mk13 !include ../../makefile.inc 14 14 15 15 … … 29 29 # 30 30 LIBS = \ 31 $( PDWIN32_LIB)/kernel32.lib \32 $( PDWIN32_LIB)/user32.lib \33 $( PDWIN32_LIB)/$(ODINCRT).lib \34 $( PDWIN32_LIB)/crtdll.lib \35 $( PDWIN32_LIB)/lz32.lib \31 $(ODIN32_LIB)/kernel32.lib \ 32 $(ODIN32_LIB)/user32.lib \ 33 $(ODIN32_LIB)/$(ODINCRT).lib \ 34 $(ODIN32_LIB)/crtdll.lib \ 35 $(ODIN32_LIB)/lz32.lib \ 36 36 OS2386.LIB \ 37 37 $(RTLLIB_O) … … 47 47 # Includes the common rules. 48 48 # 49 !include $( PDWIN32_INCLUDE)/pdwin32.post49 !include $(ODIN32_POST_INC) 50 50 -
trunk/src/wing32/makefile
r4620 r4719 1 # $Id: makefile,v 1. 9 2000-11-19 08:35:50bird Exp $1 # $Id: makefile,v 1.10 2000-12-02 23:56:28 bird Exp $ 2 2 3 3 # 4 4 # Odin32 API 5 5 # 6 # wing32.dll makefile6 # wing32.dll makefile 7 7 # 8 8 … … 11 11 # Compiler, tools, and interference rules. 12 12 # 13 !include ../../ include/pdwin32.mk13 !include ../../makefile.inc 14 14 15 15 … … 27 27 # 28 28 LIBS = \ 29 $( PDWIN32_LIB)/kernel32.lib \30 $( PDWIN32_LIB)/user32.lib \31 $( PDWIN32_LIB)/gdi32.lib \32 $( PDWIN32_LIB)/$(ODINCRT).lib \29 $(ODIN32_LIB)/kernel32.lib \ 30 $(ODIN32_LIB)/user32.lib \ 31 $(ODIN32_LIB)/gdi32.lib \ 32 $(ODIN32_LIB)/$(ODINCRT).lib \ 33 33 OS2386.LIB \ 34 34 $(RTLLIB_O) … … 44 44 # Includes the common rules. 45 45 # 46 !include $( PDWIN32_INCLUDE)/pdwin32.post46 !include $(ODIN32_POST_INC) 47 47 48 48 -
trunk/src/wininet/makefile
r4620 r4719 1 # $Id: makefile,v 1.1 0 2000-11-19 08:35:50bird Exp $1 # $Id: makefile,v 1.11 2000-12-02 23:56:21 bird Exp $ 2 2 3 3 # … … 11 11 # Compiler, tools, and interference rules. 12 12 # 13 !include ../../ include/pdwin32.mk13 !include ../../makefile.inc 14 14 15 15 … … 30 30 # 31 31 LIBS = \ 32 $( PDWIN32_LIB)/kernel32.lib \33 $( PDWIN32_LIB)/user32.lib \34 $( PDWIN32_LIB)/$(ODINCRT).lib \35 $( PDWIN32_LIB)/wsock32.lib \32 $(ODIN32_LIB)/kernel32.lib \ 33 $(ODIN32_LIB)/user32.lib \ 34 $(ODIN32_LIB)/$(ODINCRT).lib \ 35 $(ODIN32_LIB)/wsock32.lib \ 36 36 OS2386.LIB \ 37 37 $(RTLLIB_O) … … 47 47 # Includes the common rules. 48 48 # 49 !include $( PDWIN32_INCLUDE)/pdwin32.post49 !include $(ODIN32_POST_INC) 50 50 -
trunk/src/winmm/makefile
r4620 r4719 1 # $Id: makefile,v 1.2 0 2000-11-19 08:35:50bird Exp $1 # $Id: makefile,v 1.21 2000-12-02 23:55:34 bird Exp $ 2 2 3 3 # … … 11 11 # Compiler, tools, and interference rules. 12 12 # 13 !include ../../ include/pdwin32.mk13 !include ../../makefile.inc 14 14 15 15 … … 44 44 # 45 45 LIBS = \ 46 $( PDWIN32_LIB)/pmwinx.lib \46 $(ODIN32_LIB)/pmwinx.lib \ 47 47 mmpm2.lib \ 48 $( PDWIN32_LIB)/kernel32.lib \49 $( PDWIN32_LIB)/user32.lib \50 $( PDWIN32_LIB)/$(ODINCRT).lib \48 $(ODIN32_LIB)/kernel32.lib \ 49 $(ODIN32_LIB)/user32.lib \ 50 $(ODIN32_LIB)/$(ODINCRT).lib \ 51 51 OS2386.LIB \ 52 52 $(RTLLIB_O) … … 62 62 # Includes the common rules. 63 63 # 64 !include $( PDWIN32_INCLUDE)/pdwin32.post64 !include $(ODIN32_POST_INC) 65 65 -
trunk/src/winmm/mcianim/makefile
r2670 r4719 1 # $Id: makefile,v 1. 4 2000-02-06 20:52:33 sandervlExp $1 # $Id: makefile,v 1.5 2000-12-02 23:55:35 bird Exp $ 2 2 3 3 # 4 # PD-Win32 API4 # Odin32 API 5 5 # 6 # 6 # mcianim.dll makefile 7 7 # 8 8 9 PDWIN32_INCLUDE = ..\..\..\include 10 PDWIN32_LIB = ..\..\..\lib 11 PDWIN32_BIN = ..\..\..\bin 12 PDWIN32_TOOLS = ..\..\..\tools\bin 9 10 # 11 # Compiler, tools, and interference rules. 12 # 13 !include ../../../makefile.inc 13 14 14 15 15 !include $(PDWIN32_INCLUDE)/pdwin32.mk 16 # 17 # Object files. Prefix with OBJDIR and one space before the '\'. 18 # 19 OBJS = \ 20 mcianim.obj \ 21 mcianimrsrc.obj \ 22 $(DLLENTRY) 16 23 17 24 18 CFLAGS = $(CFLAGS) -I$(PDWIN32_INCLUDE) 19 CXXFLAGS = $(CXXFLAGS) -I$(PDWIN32_INCLUDE) 25 # 26 # Libraries. One space before the '\'. 27 # 28 LIBS = \ 29 $(ODIN32_LIB)/kernel32.lib \ 30 $(ODIN32_LIB)/user32.lib \ 31 $(ODIN32_LIB)/winmm.lib \ 32 $(ODIN32_LIB)/$(ODINCRT).lib \ 33 $(ODIN32_LIB)/pmwinx.lib \ 34 $(RTLLIB_O) \ 35 OS2386.LIB 20 36 21 37 38 # 39 # Target name - name of the dll without extention and path. 40 # 22 41 TARGET = mcianim 23 42 24 OBJS = mcianim.obj resource.obj $(PDWIN32_LIB)/dllentry.obj25 43 26 all: $(TARGET).dll $(TARGET).lib 44 # 45 # Includes the common rules. 46 # 47 !include $(ODIN32_POST_INC) 27 48 28 29 $(TARGET).dll: $(OBJS) $(TARGET).def30 $(LD) $(LDFLAGS) -Fm -Fe$@ $(OBJS) $(TARGET).def \31 $(PDWIN32_LIB)/pmwinx.lib $(PDWIN32_LIB)/kernel32.lib \32 $(PDWIN32_LIB)/user32.lib $(PDWIN32_LIB)/winmm.lib $(PDWIN32_LIB)/odincrt.lib OS2386.LIB $(RTLLIB_O)33 $(CP) $@ $(PDWIN32_BIN)34 35 36 $(TARGET).lib: $(TARGET).def37 $(IMPLIB) $(IMPLIBFLAGS) $@ $**38 $(CP) $@ $(PDWIN32_LIB)39 40 resource.asm: $(TARGET).rc41 $(RC) $(RCFLAGS) -o resource.asm $(TARGET).rc42 43 resource.obj: resource.asm44 45 mcianim.obj: mcianim.cpp46 47 clean:48 $(RM) *.obj *.lib *.dll *.map *.pch49 $(RM) $(PDWIN32_BIN)\$(TARGET).dll50 $(RM) $(PDWIN32_LIB)\$(TARGET).lib51 52 53 54 55 -
trunk/src/winmm/mciavi32/makefile
r2670 r4719 1 # $Id: makefile,v 1. 4 2000-02-06 20:52:34 sandervlExp $1 # $Id: makefile,v 1.5 2000-12-02 23:55:35 bird Exp $ 2 2 3 3 # 4 # PD-Win32 API4 # Odin32 API 5 5 # 6 # 6 # mciavi32.dll makefile 7 7 # 8 8 9 PDWIN32_INCLUDE = ..\..\..\include 10 PDWIN32_LIB = ..\..\..\lib 11 PDWIN32_BIN = ..\..\..\bin 12 PDWIN32_TOOLS = ..\..\..\tools\bin 9 10 # 11 # Compiler, tools, and interference rules. 12 # 13 !include ../../../makefile.inc 13 14 14 15 15 !include $(PDWIN32_INCLUDE)/pdwin32.mk 16 # 17 # Object files. Prefix with OBJDIR and one space before the '\'. 18 # 19 OBJS = \ 20 mciavi32.obj \ 21 mciavi32rsrc.obj \ 22 $(DLLENTRY) 16 23 17 24 18 CFLAGS = $(CFLAGS) -I$(PDWIN32_INCLUDE) 19 CXXFLAGS = $(CXXFLAGS) -I$(PDWIN32_INCLUDE) 25 # 26 # Libraries. One space before the '\'. 27 # 28 LIBS = \ 29 $(ODIN32_LIB)/kernel32.lib \ 30 $(ODIN32_LIB)/user32.lib \ 31 $(ODIN32_LIB)/winmm.lib \ 32 $(ODIN32_LIB)/$(ODINCRT).lib \ 33 $(ODIN32_LIB)/pmwinx.lib \ 34 OS2386.LIB \ 35 $(RTLLIB_O) 20 36 21 37 38 # 39 # Target name - name of the dll without extention and path. 40 # 22 41 TARGET = mciavi32 23 42 24 OBJS = mciavi32.obj resource.obj $(PDWIN32_LIB)/dllentry.obj25 43 26 all: $(TARGET).dll $(TARGET).lib 44 # 45 # Includes the common rules. 46 # 47 !include $(ODIN32_POST_INC) 27 48 28 29 $(TARGET).dll: $(OBJS) $(TARGET).def30 $(LD) $(LDFLAGS) -Fm -Fe$@ $(OBJS) $(TARGET).def \31 $(PDWIN32_LIB)/pmwinx.lib $(PDWIN32_LIB)/kernel32.lib \32 $(PDWIN32_LIB)/user32.lib $(PDWIN32_LIB)/winmm.lib $(PDWIN32_LIB)/odincrt.lib OS2386.LIB $(RTLLIB_O)33 $(CP) $@ $(PDWIN32_BIN)34 35 36 $(TARGET).lib: $(TARGET).def37 $(IMPLIB) $(IMPLIBFLAGS) $@ $**38 $(CP) $@ $(PDWIN32_LIB)39 40 resource.asm: $(TARGET).rc41 $(RC) $(RCFLAGS) -o resource.asm $(TARGET).rc42 43 resource.obj: resource.asm44 45 mciavi32.obj: mciavi32.cpp46 47 clean:48 $(RM) *.obj *.lib *.dll *.map *.pch49 $(RM) $(PDWIN32_BIN)\$(TARGET).dll50 $(RM) $(PDWIN32_LIB)\$(TARGET).lib51 52 53 54 55 -
trunk/src/winmm/mcicda/makefile
r4709 r4719 1 # $Id: makefile,v 1. 4 2000-12-02 11:37:05 sandervlExp $1 # $Id: makefile,v 1.5 2000-12-02 23:53:56 bird Exp $ 2 2 3 3 # 4 # PD-Win32 API4 # Odin32 API 5 5 # 6 # 6 # mcicda.dll makefile 7 7 # 8 8 9 #10 # Directory macros.11 #12 PDWIN32_INCLUDE = ..\..\..\include13 PDWIN32_LIB = ..\..\..\lib14 PDWIN32_BIN = ..\..\..\$(OBJDIR)15 PDWIN32_TOOLS = ..\..\..\tools\bin16 9 17 10 # 18 11 # Compiler, tools, and interference rules. 19 12 # 20 !include $(PDWIN32_INCLUDE)/pdwin32.mk 13 !include ../../../makefile.inc 14 15 16 # 17 # Object files. Prefix with OBJDIR and one space before the '\'. 18 # 19 OBJS = \ 20 $(OBJDIR)\mcicda.obj \ 21 $(OBJDIR)\cdrom.obj \ 22 $(OBJDIR)\mcicdos2rsrc.obj \ 23 $(OBJDIR)\os2cdrom.obj \ 24 $(DLLENTRY) \ 25 26 27 # 28 # Libraries. One space before the '\'. 29 # 30 LIBS = \ 31 $(ODIN32_LIB)/kernel32.lib \ 32 $(ODIN32_LIB)/user32.lib \ 33 $(ODIN32_LIB)/winmm.lib \ 34 $(ODIN32_LIB)/$(ODINCRT).lib \ 35 OS2386.LIB \ 36 $(RTLLIB_O) 37 21 38 22 39 # … … 25 42 TARGET = mcicdos2 26 43 27 OBJS = $(OBJDIR)\mcicda.obj \28 $(OBJDIR)\cdrom.obj \29 $(OBJDIR)\mcicdos2rsrc.obj \30 $(PDWIN32_LIB)/dllentry.obj \31 $(OBJDIR)\os2cdrom.obj32 33 #34 # Libraries. One space before the '\'.35 #36 LIBS = \37 $(PDWIN32_LIB)\WINMM.LIB \38 $(PDWIN32_LIB)/kernel32.lib \39 $(PDWIN32_LIB)/$(ODINCRT).lib \40 OS2386.LIB \41 $(RTLLIB_O)42 43 44 44 45 45 # 46 46 # Includes the common rules. 47 47 # 48 !include $( PDWIN32_INCLUDE)/pdwin32.post48 !include $(ODIN32_POST_INC) -
trunk/src/winmm/mciseq/makefile
r2670 r4719 1 # $Id: makefile,v 1. 4 2000-02-06 20:52:34 sandervlExp $1 # $Id: makefile,v 1.5 2000-12-02 23:55:36 bird Exp $ 2 2 3 3 # 4 # PD-Win32 API4 # Odin32 API 5 5 # 6 # 6 # mciseq.dll makefile 7 7 # 8 8 9 PDWIN32_INCLUDE = ..\..\..\include 10 PDWIN32_LIB = ..\..\..\lib 11 PDWIN32_BIN = ..\..\..\bin 12 PDWIN32_TOOLS = ..\..\..\tools\bin 9 10 # 11 # Compiler, tools, and interference rules. 12 # 13 !include ../../../makefile.inc 13 14 14 15 15 !include $(PDWIN32_INCLUDE)/pdwin32.mk 16 # 17 # Object files. Prefix with OBJDIR and one space before the '\'. 18 # 19 OBJS = \ 20 $(OBJDIR)\mciseq.obj \ 21 $(OBJDIR)\mciseqrsrc.obj \ 22 $(DLLENTRY) 16 23 17 24 18 CFLAGS = $(CFLAGS) -I$(PDWIN32_INCLUDE) 19 CXXFLAGS = $(CXXFLAGS) -I$(PDWIN32_INCLUDE) 25 # 26 # Libraries. One space before the '\'. 27 # 28 LIBS = \ 29 $(ODIN32_LIB)/kernel32.lib \ 30 $(ODIN32_LIB)/user32.lib \ 31 $(ODIN32_LIB)/winmm.lib \ 32 $(ODIN32_LIB)/$(ODINCRT).lib \ 33 $(ODIN32_LIB)/pmwinx.lib \ 34 OS2386.LIB \ 35 $(RTLLIB_O) 20 36 21 37 38 # 39 # Target name - name of the dll without extention and path. 40 # 22 41 TARGET = mciseq 23 42 24 OBJS = mciseq.obj resource.obj $(PDWIN32_LIB)/dllentry.obj25 43 26 all: $(TARGET).dll $(TARGET).lib 44 # 45 # Includes the common rules. 46 # 47 !include $(ODIN32_POST_INC) 27 48 28 29 $(TARGET).dll: $(OBJS) $(TARGET).def30 $(LD) $(LDFLAGS) -Fm -Fe$@ $(OBJS) $(TARGET).def \31 $(PDWIN32_LIB)/pmwinx.lib $(PDWIN32_LIB)/kernel32.lib \32 $(PDWIN32_LIB)/user32.lib $(PDWIN32_LIB)/winmm.lib $(PDWIN32_LIB)/odincrt.lib OS2386.LIB $(RTLLIB_O)33 $(CP) $@ $(PDWIN32_BIN)34 35 36 $(TARGET).lib: $(TARGET).def37 $(IMPLIB) $(IMPLIBFLAGS) $@ $**38 $(CP) $@ $(PDWIN32_LIB)39 40 resource.asm: $(TARGET).rc41 $(RC) $(RCFLAGS) -o resource.asm $(TARGET).rc42 43 resource.obj: resource.asm44 45 mciseq.obj: mciseq.cpp46 47 clean:48 $(RM) *.obj *.lib *.dll *.map *.pch49 $(RM) $(PDWIN32_BIN)\$(TARGET).dll50 $(RM) $(PDWIN32_LIB)\$(TARGET).lib51 52 53 54 55 -
trunk/src/winmm/mciwave/makefile
r2670 r4719 1 # $Id: makefile,v 1. 4 2000-02-06 20:52:35 sandervlExp $1 # $Id: makefile,v 1.5 2000-12-02 23:55:38 bird Exp $ 2 2 3 3 # 4 # PD-Win32 API4 # Odin32 API 5 5 # 6 # 6 # mciwave.dll makefile 7 7 # 8 8 9 PDWIN32_INCLUDE = ..\..\..\include 10 PDWIN32_LIB = ..\..\..\lib 11 PDWIN32_BIN = ..\..\..\bin 12 PDWIN32_TOOLS = ..\..\..\tools\bin 9 10 # 11 # Compiler, tools, and interference rules. 12 # 13 !include ../../../makefile.inc 13 14 14 15 15 !include $(PDWIN32_INCLUDE)/pdwin32.mk 16 # 17 # Object files. Prefix with OBJDIR and one space before the '\'. 18 # 19 OBJS = \ 20 $(OBJDIR)\mciwave.obj \ 21 $(OBJDIR)\mciwaversrc.obj \ 22 $(DLLENTRY) 16 23 17 24 18 CFLAGS = $(CFLAGS) -I$(PDWIN32_INCLUDE) 19 CXXFLAGS = $(CXXFLAGS) -I$(PDWIN32_INCLUDE) 25 # 26 # Libraries. One space before the '\'. 27 # 28 LIBS = \ 29 $(ODIN32_LIB)/kernel32.lib \ 30 $(ODIN32_LIB)/user32.lib \ 31 $(ODIN32_LIB)/winmm.lib \ 32 $(ODIN32_LIB)/$(ODINCRT).lib \ 33 $(ODIN32_LIB)/pmwinx.lib \ 34 OS2386.LIB \ 35 $(RTLLIB_O) 20 36 21 37 38 # 39 # Target name - name of the dll without extention and path. 40 # 22 41 TARGET = mciwave 23 42 24 OBJS = mciwave.obj resource.obj $(PDWIN32_LIB)/dllentry.obj25 43 26 all: $(TARGET).dll $(TARGET).lib 44 # 45 # Includes the common rules. 46 # 47 !include $(ODIN32_POST_INC) 27 48 28 29 $(TARGET).dll: $(OBJS) $(TARGET).def30 $(LD) $(LDFLAGS) -Fm -Fe$@ $(OBJS) $(TARGET).def \31 $(PDWIN32_LIB)/pmwinx.lib $(PDWIN32_LIB)/kernel32.lib \32 $(PDWIN32_LIB)/user32.lib $(PDWIN32_LIB)/winmm.lib $(PDWIN32_LIB)/odincrt.lib OS2386.LIB $(RTLLIB_O)33 $(CP) $@ $(PDWIN32_BIN)34 35 36 $(TARGET).lib: $(TARGET).def37 $(IMPLIB) $(IMPLIBFLAGS) $@ $**38 $(CP) $@ $(PDWIN32_LIB)39 40 resource.asm: $(TARGET).rc41 $(RC) $(RCFLAGS) -o resource.asm $(TARGET).rc42 43 resource.obj: resource.asm44 45 mciwave.obj: mciwave.cpp46 47 clean:48 $(RM) *.obj *.lib *.dll *.map *.pch49 $(RM) $(PDWIN32_BIN)\$(TARGET).dll50 $(RM) $(PDWIN32_LIB)\$(TARGET).lib51 52 53 54 55 -
trunk/src/winmm/midimap/makefile
r2670 r4719 1 # $Id: makefile,v 1. 4 2000-02-06 20:52:36 sandervlExp $1 # $Id: makefile,v 1.5 2000-12-02 23:55:38 bird Exp $ 2 2 3 3 # 4 # PD-Win32 API4 # Odin32 API 5 5 # 6 # 6 # midimap.dll makefile 7 7 # 8 8 9 PDWIN32_INCLUDE = ..\..\..\include 10 PDWIN32_LIB = ..\..\..\lib 11 PDWIN32_BIN = ..\..\..\bin 12 PDWIN32_TOOLS = ..\..\..\tools\bin 9 10 # 11 # Compiler, tools, and interference rules. 12 # 13 !include ../../../makefile.inc 13 14 14 15 15 !include $(PDWIN32_INCLUDE)/pdwin32.mk 16 # 17 # Object files. Prefix with OBJDIR and one space before the '\'. 18 # 19 OBJS = \ 20 midimap.obj \ 21 midimaprsrc.obj \ 22 $(DLLENTRY) 16 23 17 24 18 CFLAGS = $(CFLAGS) -I$(PDWIN32_INCLUDE) 19 CXXFLAGS = $(CXXFLAGS) -I$(PDWIN32_INCLUDE) 25 # 26 # Libraries. One space before the '\'. 27 # 28 LIBS = \ 29 $(ODIN32_LIB)/kernel32.lib \ 30 $(ODIN32_LIB)/user32.lib \ 31 $(ODIN32_LIB)/winmm.lib \ 32 $(ODIN32_LIB)/$(ODINCRT).lib \ 33 $(ODIN32_LIB)/pmwinx.lib \ 34 $(RTLLIB_O) \ 35 OS2386.LIB 20 36 21 37 38 # 39 # Target name - name of the dll without extention and path. 40 # 22 41 TARGET = midimap 23 42 24 OBJS = midimap.obj resource.obj $(PDWIN32_LIB)/dllentry.obj25 43 26 all: $(TARGET).dll $(TARGET).lib 44 # 45 # Includes the common rules. 46 # 47 !include $(ODIN32_POST_INC) 27 48 28 29 $(TARGET).dll: $(OBJS) $(TARGET).def30 $(LD) $(LDFLAGS) -Fm -Fe$@ $(OBJS) $(TARGET).def \31 $(PDWIN32_LIB)/pmwinx.lib $(PDWIN32_LIB)/kernel32.lib \32 $(PDWIN32_LIB)/user32.lib $(PDWIN32_LIB)/winmm.lib $(PDWIN32_LIB)/odincrt.lib OS2386.LIB $(RTLLIB_O)33 $(CP) $@ $(PDWIN32_BIN)34 35 36 $(TARGET).lib: $(TARGET).def37 $(IMPLIB) $(IMPLIBFLAGS) $@ $**38 $(CP) $@ $(PDWIN32_LIB)39 40 resource.asm: $(TARGET).rc41 $(RC) $(RCFLAGS) -o resource.asm $(TARGET).rc42 43 resource.obj: resource.asm44 45 midimap.obj: midimap.cpp46 47 clean:48 $(RM) *.obj *.lib *.dll *.map *.pch49 $(RM) $(PDWIN32_BIN)\$(TARGET).dll50 $(RM) $(PDWIN32_LIB)\$(TARGET).lib51 52 53 54 55 -
trunk/src/winmm/wavemap/makefile
r2670 r4719 1 # $Id: makefile,v 1. 4 2000-02-06 20:52:36 sandervlExp $1 # $Id: makefile,v 1.5 2000-12-02 23:55:40 bird Exp $ 2 2 3 3 # 4 # PD-Win32 API4 # Odin32 API 5 5 # 6 # 6 # wavemap.drv makefile 7 7 # 8 8 9 PDWIN32_INCLUDE = ..\..\..\include 10 PDWIN32_LIB = ..\..\..\lib 11 PDWIN32_BIN = ..\..\..\bin 12 PDWIN32_TOOLS = ..\..\..\tools\bin 9 10 # 11 # Compiler, tools, and interference rules. 12 # 13 !include ../../../makefile.inc 13 14 14 15 15 !include $(PDWIN32_INCLUDE)/pdwin32.mk 16 # 17 # Object files. Prefix with OBJDIR and one space before the '\'. 18 # 19 OBJS = \ 20 $(OBJDIR)\msacm32.obj \ 21 $(OBJDIR)\msacm32rsrc.obj \ 22 $(DLLENTRY) 16 23 17 24 18 CFLAGS = $(CFLAGS) -I$(PDWIN32_INCLUDE) 19 CXXFLAGS = $(CXXFLAGS) -I$(PDWIN32_INCLUDE) 25 # 26 # Libraries. One space before the '\'. 27 # 28 LIBS = \ 29 $(ODIN32_LIB)/kernel32.lib \ 30 $(ODIN32_LIB)/user32.lib \ 31 $(ODIN32_LIB)/winmm.lib \ 32 $(ODIN32_LIB)/$(ODINCRT).lib \ 33 $(ODIN32_LIB)/pmwinx.lib \ 34 $(RTLLIB_O) \ 35 OS2386.LIB 20 36 21 37 38 # 39 # Target name - name of the dll without extention and path. 40 # 22 41 TARGET = msacm32 23 42 24 OBJS = msacm32.obj resource.obj $(PDWIN32_LIB)/dllentry.obj25 43 26 all: $(TARGET).drv $(TARGET).lib 44 # 45 # Target extention override. 46 # 47 TARGET_EXTENSION = drv 27 48 49 # 50 # Includes the common rules. 51 # 52 !include $(ODIN32_POST_INC) 28 53 29 $(TARGET).drv: $(OBJS) $(TARGET).def30 $(LD) $(LDFLAGS) -Fm -Fe$@ $(OBJS) $(TARGET).def \31 $(PDWIN32_LIB)/pmwinx.lib $(PDWIN32_LIB)/kernel32.lib \32 $(PDWIN32_LIB)/user32.lib $(PDWIN32_LIB)/winmm.lib $(PDWIN32_LIB)/odincrt.lib OS2386.LIB $(RTLLIB_O)33 $(CP) $@ $(PDWIN32_BIN)34 35 36 $(TARGET).lib: $(TARGET).def37 $(IMPLIB) $(IMPLIBFLAGS) $@ $**38 $(CP) $@ $(PDWIN32_LIB)39 40 resource.asm: $(TARGET).rc41 $(RC) $(RCFLAGS) -o resource.asm $(TARGET).rc42 43 resource.obj: resource.asm44 45 msacm32.obj: msacm32.cpp46 47 clean:48 $(RM) *.obj *.lib *.dll *.map *.pch49 $(RM) $(PDWIN32_BIN)\$(TARGET).dll50 $(RM) $(PDWIN32_LIB)\$(TARGET).lib51 52 53 54 55
Note:
See TracChangeset
for help on using the changeset viewer.