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.
58 lines
1.2 KiB
58 lines
1.2 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.
|
|
|
|
|
|
Author:
|
|
|
|
Ovidiu Temereanca (ovidiut) 27-Mar-2000
|
|
|
|
NOTE: Commented description of this file is in \nt\bak\bin\sources.tpl
|
|
|
|
!ENDIF
|
|
|
|
# settings common to all code that run on both platforms
|
|
# component
|
|
MAJORCOMP=setup
|
|
MINORCOMP=encrypt
|
|
|
|
#
|
|
# The PRERELEASE option
|
|
#
|
|
!include $(PROJECT_ROOT)\ntsetup\sources.inc
|
|
|
|
|
|
# compiler options
|
|
SOURCES= \
|
|
setpwd.c \
|
|
owf.c \
|
|
encrypt.c \
|
|
|
|
# include path
|
|
INCLUDES=$(SDK_INC_PATH); \
|
|
$(ADMIN_INC_PATH); \
|
|
$(DS_INC_PATH); \
|
|
$(DS_INC_PATH)\crypto; \
|
|
|
|
# target
|
|
TARGETNAME=encrypt
|
|
TARGETTYPE=LIBRARY
|
|
TARGETPATH=obj
|
|
TARGETLIBS=\
|
|
$(SDK_LIB_PATH)\kernel32.lib \
|
|
USE_NTDLL=0
|
|
USE_CRTDLL=0
|
|
|
|
PASS1_PUBLISH= \
|
|
{$(O)\encrypt.lib=$(PROJECT_LIB_PATH)\encrypt.lib}
|