64 lines
1.6 KiB
Plaintext
64 lines
1.6 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
|
|
|
|
|
|
|
|
TARGETNAME=cryptest
|
|
TARGETPATH=obj
|
|
TARGETTYPE=PROGRAM
|
|
|
|
UMTYPE=console
|
|
|
|
INCLUDES=$(BASEDIR)\ds\security\protocols\kerberos\idl\; \
|
|
$(BASEDIR)\ds\security\protocols\kerberos\idl\$(O); \
|
|
$(BASEDIR)\ds\security\protocols\kerberos\inc;\
|
|
$(BASEDIR)\ds\security\protocols\kerberos; \
|
|
$(BASEDIR)\lsa\crypt\engine; \
|
|
$(BASEDIR)\public\internal\enduser\inc;\
|
|
$(BASEDIR)\ds\win32\advapi;\
|
|
$(BASEDIR)\public\internal\ds\inc\crypto;
|
|
|
|
SOURCES= cryptest.cxx \
|
|
md5c.c
|
|
|
|
|
|
|
|
TARGETLIBS= \
|
|
$(BASEDIR)\ds\security\protocols\kerberos\common2\obj\*\kerbcomm.lib \
|
|
$(BASEDIR)\ds\security\lib\obj\*\secmisc.lib \
|
|
$(BASEDIR)\ds\security\lib\obj\*\dsysdbg.lib \
|
|
..\winnt\obj\*\cryptdll.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\advapi32.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\crypt32.lib \
|
|
$(SDK_LIB_PATH)\msasn1.lib \
|
|
$(SDK_LIB_PATH)\user32.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\netapi32.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\netlib.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\ntdll.lib
|
|
|
|
C_DEFINES=$(C_DEFINES) -DRPC_NO_WINDOWS_H -DUNICODE
|
|
|
|
USE_CRTDLL=1
|
|
|