mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
89 lines
2.0 KiB
89 lines
2.0 KiB
!IF 0
|
|
|
|
Copyright (c) 1989 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
common.inc
|
|
|
|
Abstract:
|
|
|
|
This is an include file for makefile.inc in each of the
|
|
directories which has c files that are wrappers for the
|
|
files in this directory. The WRAPPEDCOBJECTS macro contains
|
|
a list of the objects which are dependent on the files
|
|
in this directory.
|
|
|
|
SRCDIR must be defined in each makefile.inc, and will
|
|
always point to the directory that this file is in.
|
|
|
|
|
|
Author:
|
|
|
|
Wesley Witt (wesw) 10-Aug-1993
|
|
|
|
!ENDIF
|
|
|
|
|
|
WRAPPEDCOBJECTS = \
|
|
obj\*\calldata.obj \
|
|
obj\*\crt.obj \
|
|
obj\*\device.obj \
|
|
obj\*\driver.obj \
|
|
obj\*\errorlog.obj \
|
|
obj\*\exceptn.obj \
|
|
obj\*\filelock.obj \
|
|
obj\*\filecach.obj \
|
|
obj\*\handle.obj \
|
|
obj\*\heap.obj \
|
|
obj\*\help.obj \
|
|
obj\*\igrep.obj \
|
|
obj\*\iospace.obj \
|
|
obj\*\locks.obj \
|
|
obj\*\lookasid.obj \
|
|
obj\*\lpc.obj \
|
|
obj\*\memory.obj \
|
|
obj\*\object.obj \
|
|
obj\*\physical.obj \
|
|
obj\*\pool.obj \
|
|
obj\*\process.obj \
|
|
obj\*\pte.obj \
|
|
obj\*\ptov.obj \
|
|
obj\*\ready.obj \
|
|
obj\*\registry.obj \
|
|
obj\*\srb.obj \
|
|
obj\*\time.obj \
|
|
obj\*\token.obj \
|
|
obj\*\tunnel.obj \
|
|
obj\*\util.obj \
|
|
obj\*\vad.obj \
|
|
obj\*\wsle.obj \
|
|
obj\*\kdexts.obj
|
|
|
|
$(WRAPPEDCOBJECTS:*=i386): $(SRCDIR)\$$(@B).c
|
|
$(WRAPPEDCOBJECTS:*=mips): $(SRCDIR)\$$(@B).c
|
|
$(WRAPPEDCOBJECTS:*=ppc): $(SRCDIR)\$$(@B).c
|
|
$(WRAPPEDCOBJECTS:*=alpha): $(SRCDIR)\$$(@B).c
|
|
|
|
..\atom.c: ..\..\ntsdexts\atomext.c
|
|
|
|
..\kuser.c: ..\..\ntsdexts\kuserext.c
|
|
|
|
..\peb.c: ..\..\ntsdexts\pebext.c
|
|
|
|
..\heap.c: ..\..\ntsdexts\heapext.c
|
|
|
|
..\trace.c: ..\..\ntsdexts\traceext.c
|
|
|
|
..\dlls.c: ..\..\ntsdexts\dllsext.c
|
|
|
|
..\image.c: ..\..\ntsdexts\imageext.c
|
|
|
|
..\kdexts.c: $(BASEDIR)\public\sdk\inc\ntverp.h
|
|
|
|
help.c: ..\help.c
|
|
|
|
pte.c: ..\pte.c
|
|
|
|
obj\$(TARGET_DIRECTORY)\$(TARGETNAME).def: ..\kdextdef.src $(TARGETNAME).def
|
|
copy ..\kdextdef.src+$(TARGETNAME).def obj\$(TARGET_DIRECTORY)\$(TARGETNAME).def
|