mirror of https://github.com/lianthony/NT4.0
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.
43 lines
797 B
43 lines
797 B
#----------------------------------------------------------------------------
|
|
#
|
|
# Description:
|
|
#
|
|
# sources file for test program for cryptapi
|
|
#
|
|
# History:
|
|
#
|
|
# 11/29/94 larrys created
|
|
# 03/15/95 raymondm added conditional linking to capi.dll
|
|
#
|
|
#----------------------------------------------------------------------------
|
|
|
|
MAJORCOMP=init
|
|
MINORCOMP=EXE
|
|
|
|
TARGETNAME=init
|
|
TARGETPATH=..\bin
|
|
TARGETTYPE=PROGRAM
|
|
|
|
LINKLIBS=\
|
|
$(CLIBS)
|
|
|
|
INCLUDES= $(NTINCLUDES); \
|
|
..\..\inc;
|
|
|
|
TARGETLIBS=\
|
|
!if "$(ACT_BUILD)" == "TRUE"
|
|
$(BASEDIR)\private\security\lib\*\capi.lib\
|
|
$(BASEDIR)\public\sdk\lib\*\advapi32.lib
|
|
!else
|
|
$(BASEDIR)\public\sdk\lib\*\advapi32.lib
|
|
!endif
|
|
|
|
SOURCES=\
|
|
init.c \
|
|
init.rc
|
|
|
|
UMTYPE=console
|
|
UMENTRY=main
|
|
UMTEST=
|
|
UMAPPL=
|
|
UMLIBS=
|