mirror of https://github.com/tongzx/nt5src
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
1.9 KiB
89 lines
1.9 KiB
!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.
|
|
|
|
!ENDIF
|
|
|
|
TARGETNAME=ntfs
|
|
TARGETTYPE=DRIVER
|
|
DRIVERTYPE=FS
|
|
|
|
INCLUDES=..;$(PROJECT_ROOT)\ntos\inc;$(DRIVERS_INC_PATH)
|
|
|
|
NTPROFILEINPUT=yes
|
|
|
|
C_DEFINES=$(C_DEFINES) -D_NTDRIVER_
|
|
|
|
!IFDEF BUILD_FOR_3_51
|
|
C_DEFINES= $(C_DEFINES) -D_NTIFS_
|
|
!ENDIF
|
|
|
|
MSC_WARNING_LEVEL=/W3 /WX
|
|
|
|
SOURCES=..\AllocSup.c \
|
|
..\AttrData.c \
|
|
..\AttrSup.c \
|
|
..\BitmpSup.c \
|
|
..\CacheSup.c \
|
|
..\CheckSup.c \
|
|
..\Cleanup.c \
|
|
..\Close.c \
|
|
..\ColatSup.c \
|
|
..\Create.c \
|
|
..\DevCtrl.c \
|
|
..\DevIoSup.c \
|
|
..\DirCtrl.c \
|
|
..\Ea.c \
|
|
..\FileInfo.c \
|
|
..\FilObSup.c \
|
|
..\Flush.c \
|
|
..\FsCtrl.c \
|
|
..\FspDisp.c \
|
|
..\FstIoSup.c \
|
|
..\HashSup.c \
|
|
..\IndexSup.c \
|
|
..\LockCtrl.c \
|
|
..\LogSup.c \
|
|
..\McbSup.c \
|
|
..\MftSup.c \
|
|
..\NameSup.c \
|
|
..\Ntfs.rc \
|
|
..\NtfsData.c \
|
|
..\NtfsExp.c \
|
|
..\NtfsInit.c \
|
|
..\ObjIdSup.c \
|
|
..\Pnp.c \
|
|
..\PrefxSup.c \
|
|
..\Quota.c \
|
|
..\QuotaSup.c \
|
|
..\Read.c \
|
|
..\ReparSup.c \
|
|
..\ResrcSup.c \
|
|
..\RestrSup.c \
|
|
..\SecurSup.c \
|
|
..\SeInfo.c \
|
|
..\Shutdown.c \
|
|
..\StrucSup.c \
|
|
..\UsnSup.c \
|
|
..\VattrSup.c \
|
|
..\VerfySup.c \
|
|
..\ViewSup.c \
|
|
..\VolInfo.c \
|
|
..\WorkQue.c \
|
|
..\Write.c
|
|
|
|
PRECOMPILED_INCLUDE=..\ntfsproc.h
|
|
PRECOMPILED_PCH=ntfsproc.pch
|
|
PRECOMPILED_OBJ=ntfsproc.obj
|
|
|