windows-nt/Source/XPSP1/NT/base/fs/rdr2/rdbss/daytona/sources
2020-09-26 16:20:57 +08:00

113 lines
2 KiB
Plaintext

!IF 0
Copyright (c) 1989 Microsoft Corporation
Module Name:
sources.
Abstract:
This file specifies the target component being built and the list of
sources files needed to build that component. Also specifies optional
compiler switches and libraries that are unique for the component being
built.
Author:
Steve Wood (stevewo) 12-Apr-1990
NOTE: Commented description of this file is in \nt\bak\bin\sources.tpl
!ENDIF
RDR2=$(PROJECT_ROOT)\fs\rdr2
!INCLUDE $(RDR2)\rdbss\master.src
MAJORCOMP=ntos
MINORCOMP=rdbss
TARGETNAME=rdbss
TARGETPATH=obj
!IF $(MONOLITHIC_MINIRDR)
TARGETTYPE=LIBRARY
!ELSE
TARGETTYPE=EXPORT_DRIVER
TARGETLIBS=\
$(DDK_LIB_PATH)\tdi.lib \
$(DDK_LIB_PATH)\ksecdd.lib \
$(RDR2)\wmi\$(O)\wmlkm.lib
CRTLIBS= \
$(RDR2)\rdbss\copysup.nt\daytona\$(O)\copysup.lib
!ENDIF
SYNCHRONIZE_DRAIN=1
INCLUDES=\
..;\
..\inc;\
..\..\inc;\
$(NET_INC_PATH);\
$(IFSKIT_INC_PATH)
C_DEFINES=$(C_DEFINES) -DEXPLODE_POOLTAGS
!IF $(MONOLITHIC_MINIRDR)
C_DEFINES=$(C_DEFINES) -DMONOLITHIC_MINIRDR
!ENDIF
#CODE.IMPROVEMENT much of this stuff should be in a sources.inc file
SOURCES= \
..\BackPack.c \
..\CacheSup.c \
..\Cancel.c \
..\Cleanup.c \
..\Close.c \
..\Create.c \
..\DevCtrl.c \
..\DirCtrl.c \
..\Ea.c \
..\FileInfo.c \
..\Flush.c \
..\FsCtrl.c \
..\LockCtrl.c \
..\minirdr.c \
..\NTexcept.c \
..\NTDevFCB.c \
..\NTErrLog.c \
..\NTfsd.c \
..\NTfsp.c \
..\NtInit.c \
..\NtFastIo.c \
..\Read.c \
..\strtstop.c \
..\VolInfo.c \
..\Write.c
!IF 0
CODE.IMPROVEMENT remove shutdown.c from sources
!ENDIF
NONMONOLITHIC_SOURCES =\
..\Rdbss.rc ..\drventry.c
!ifndef WRAP_ONLY_MODE
LINKLIBS = $(LINKLIBS) \
$(RDR2)\rxce\daytona\$(O)\rxce.lib
!endif
PRECOMPILED_INCLUDE=..\precomp.h
PRECOMPILED_PCH=precomp.pch
PRECOMPILED_OBJ=precomp.obj
!IF !$(MONOLITHIC_MINIRDR)
SOURCES = $(SOURCES) $(NONMONOLITHIC_SOURCES)
UMRES=$(O)\rdbss.res
DLLDEF=$(O)\rdbss.def
!ENDIF