Changeset 2709 for trunk/src/win32k
- Timestamp:
- Feb 10, 2000, 12:40:56 AM (26 years ago)
- Location:
- trunk/src/win32k
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/win32k/Makefile
r2588 r2709 1 1 ################################################################################ 2 # $Id: Makefile,v 1.2 0 2000-02-01 08:07:26bird Exp $2 # $Id: Makefile,v 1.21 2000-02-09 23:40:54 bird Exp $ 3 3 # 4 4 # Copyright 1998-1999 knut st. osmundsen … … 276 276 # asm deps must be updated by hand 277 277 ################################################################################ 278 depend: fastdep.exe 279 fastdep -oObject $(CINCLUDES) misc\*.c* ldr\*.c* dev32\*.c* dev16\*.c* pe2lx\*.c* include\*.h 280 281 fastdep.exe: fastdep.c 282 @$(ECHO) making fastdep.exe 283 @icc -Q+ -Ti+ fastdep.c 278 dep: 279 $(PDWIN32_TOOLS)\fastdep -oObject $(CINCLUDES) misc\*.c* ldr\*.c* dev32\*.c* dev16\*.c* pe2lx\*.c* include\*.h 284 280 285 281 object\asmutils.obj: misc\asmutils.asm include\devsegdf.inc … … 289 285 object\devlast.obj: dev32\devlast.asm include\devsegdf.inc 290 286 291 !include .depend 287 !ifndef NODEP 288 !include .dep 289 !endif -
trunk/src/win32k/configure.cmd
r1678 r2709 1 /* $Id: configure.cmd,v 1. 3 1999-11-10 01:45:29bird Exp $1 /* $Id: configure.cmd,v 1.4 2000-02-09 23:40:54 bird Exp $ 2 2 * 3 3 * Configuration script. … … 41 41 call lineout sIncFile, 'PDWIN32_BIN =' sPDWin32Base'\bin' 42 42 call lineout sIncFile, 'PDWIN32_LIB =' sPDWin32Base'\lib' 43 call lineout sIncFile, 'PDWIN32_TOOLS =' sPDWin32Base'\tools\bin' 43 44 call lineout sIncFile, '' 44 45 -
trunk/src/win32k/pe2lx/makefile
r2586 r2709 1 1 ############################################################################## 2 # $Id: makefile,v 1.1 6 2000-02-01 07:26:50bird Exp $2 # $Id: makefile,v 1.17 2000-02-09 23:40:55 bird Exp $ 3 3 # 4 4 # PD-Win32 API … … 14 14 PDWIN32_LIB = ..\..\..\lib 15 15 PDWIN32_BIN = ..\..\..\bin 16 PDWIN32_TOOLS = ..\..\..\tools\bin 16 17 PE2LXOBJ = ..\object 17 18 PE2LXLIST = ..\list … … 20 21 WIN32K_MISC = $(WIN32KBASE)\misc 21 22 WIN32K_LDR = $(WIN32KBASE)\ldr 22 OBJEXT = pe_obj23 OBJEXT = pe_obj 23 24 24 25 ############################################################################## … … 108 109 109 110 110 #all: $(TARGET).exe 111 all: depend 112 $(MAKE) /nologo DEPENDEXISTS=1 $(TARGET).exe 111 all: $(TARGET).exe 113 112 114 113 $(TARGET).exe: $(OBJS) … … 118 117 119 118 120 ..\fastdep.exe: 121 @cd .. 122 @$(ECHO) making fastdep.exe 123 @icc -Q+ -Ti+ fastdep.c 124 @cd pe2lx 119 dep: 120 $(DEPEND) -obj$(OBJEXT) -o..\Object $(CINCLUDES) ..\misc\*.c* ..\include\*.h 125 121 126 depend: ..\fastdep.exe 127 ..\fastdep.exe -obj$(OBJEXT) -o..\Object $(CINCLUDES) ..\misc\*.c* ..\include\*.h 122 !ifndef NODEP 123 !include .depend 124 !endif 128 125 129 126 ############################################################################## … … 135 132 136 133 137 !ifdef DEPENDEXISTS 138 !include .depend 139 !endif 134
Note:
See TracChangeset
for help on using the changeset viewer.