64 lines
1.2 KiB
Plaintext
64 lines
1.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
|
|
|
|
!INCLUDE $(PROJECT_ROOT)\cluster\sources.inc
|
|
|
|
TARGETNAME=clusnet
|
|
TARGETTYPE=DRIVER
|
|
TARGETPATH=$(_OBJ_DIR)
|
|
|
|
TARGETLIBS= \
|
|
..\xport\$(O)\cluxport.lib \
|
|
..\ntemgmt\$(O)\ntemgmt.lib \
|
|
$(DDK_LIB_PATH)\tdi.lib \
|
|
$(DDK_LIB_PATH)\ksecdd.lib \
|
|
$(SDK_LIB_PATH)\uuid.lib
|
|
|
|
NT_UP=0
|
|
|
|
INCLUDES=\
|
|
..\inc;\
|
|
..\..\inc;\
|
|
..\..\wml\inc;\
|
|
$(NET_INC_PATH);\
|
|
$(PROJECT_ROOT)\ntos\inc;
|
|
|
|
C_DEFINES=$(C_DEFINES) -D_PNP_POWER
|
|
C_DEFINES=$(C_DEFINES) -DMEMLOGGING
|
|
C_DEFINES=$(C_DEFINES) -DSECURITY_KERNEL
|
|
|
|
PRECOMPILED_INCLUDE=precomp.h
|
|
|
|
SOURCES= \
|
|
clusnet.rc \
|
|
clusnet.c \
|
|
dispatch.c \
|
|
resource.c \
|
|
event.c \
|
|
memlog.c \
|
|
errorlog.c
|
|
|
|
RUN_WPP=clusnet.c event.c -ini:..\inc\tracewpp.ini
|
|
|