Changeset 2709 for trunk/src/win32k


Ignore:
Timestamp:
Feb 10, 2000, 12:40:56 AM (26 years ago)
Author:
bird
Message:

Dependencies.

Location:
trunk/src/win32k
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/win32k/Makefile

    r2588 r2709  
    11################################################################################
    2 # $Id: Makefile,v 1.20 2000-02-01 08:07:26 bird Exp $
     2# $Id: Makefile,v 1.21 2000-02-09 23:40:54 bird Exp $
    33#
    44# Copyright 1998-1999 knut st. osmundsen
     
    276276#                asm deps must be updated by hand
    277277################################################################################
    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
     278dep:
     279    $(PDWIN32_TOOLS)\fastdep -oObject $(CINCLUDES) misc\*.c* ldr\*.c* dev32\*.c* dev16\*.c* pe2lx\*.c* include\*.h
    284280
    285281object\asmutils.obj:            misc\asmutils.asm     include\devsegdf.inc
     
    289285object\devlast.obj:             dev32\devlast.asm     include\devsegdf.inc
    290286
    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:29 bird Exp $
     1/* $Id: configure.cmd,v 1.4 2000-02-09 23:40:54 bird Exp $
    22 *
    33 * Configuration script.
     
    4141        call lineout sIncFile, 'PDWIN32_BIN      =' sPDWin32Base'\bin'
    4242        call lineout sIncFile, 'PDWIN32_LIB      =' sPDWin32Base'\lib'
     43        call lineout sIncFile, 'PDWIN32_TOOLS    =' sPDWin32Base'\tools\bin'
    4344        call lineout sIncFile, ''
    4445
  • trunk/src/win32k/pe2lx/makefile

    r2586 r2709  
    11##############################################################################
    2 # $Id: makefile,v 1.16 2000-02-01 07:26:50 bird Exp $
     2# $Id: makefile,v 1.17 2000-02-09 23:40:55 bird Exp $
    33#
    44# PD-Win32 API
     
    1414PDWIN32_LIB     = ..\..\..\lib
    1515PDWIN32_BIN     = ..\..\..\bin
     16PDWIN32_TOOLS   = ..\..\..\tools\bin
    1617PE2LXOBJ        = ..\object
    1718PE2LXLIST       = ..\list
     
    2021WIN32K_MISC     = $(WIN32KBASE)\misc
    2122WIN32K_LDR      = $(WIN32KBASE)\ldr
    22 OBJEXT = pe_obj
     23OBJEXT          = pe_obj
    2324
    2425##############################################################################
     
    108109
    109110
    110 #all: $(TARGET).exe
    111 all: depend
    112     $(MAKE) /nologo DEPENDEXISTS=1 $(TARGET).exe
     111all: $(TARGET).exe
    113112
    114113$(TARGET).exe: $(OBJS)
     
    118117
    119118
    120 ..\fastdep.exe:
    121     @cd ..
    122     @$(ECHO) making fastdep.exe
    123     @icc -Q+ -Ti+ fastdep.c
    124     @cd pe2lx
     119dep:
     120    $(DEPEND) -obj$(OBJEXT) -o..\Object $(CINCLUDES) ..\misc\*.c* ..\include\*.h
    125121
    126 depend: ..\fastdep.exe
    127     ..\fastdep.exe -obj$(OBJEXT) -o..\Object $(CINCLUDES) ..\misc\*.c* ..\include\*.h
     122!ifndef NODEP
     123!include .depend
     124!endif
    128125
    129126##############################################################################
     
    135132
    136133
    137 !ifdef DEPENDEXISTS
    138 !include .depend
    139 !endif
     134
Note: See TracChangeset for help on using the changeset viewer.