58 lines
1.1 KiB
Plaintext
58 lines
1.1 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:
|
||
|
|
||
|
Jeff Lawson (jlawson) nov-1999
|
||
|
|
||
|
!ENDIF
|
||
|
|
||
|
TARGETNAME=saferbox
|
||
|
TARGETPATH=obj
|
||
|
TARGETTYPE=PROGRAM
|
||
|
|
||
|
INCLUDES= \
|
||
|
$(DS_INC_PATH); \
|
||
|
$(WINDOWS_INC_PATH)
|
||
|
|
||
|
SOURCES= saferbox.c \
|
||
|
saferbox.rc
|
||
|
|
||
|
#MSC_WARNING_LEVEL=/W4
|
||
|
|
||
|
C_DEFINES=$(C_DEFINES) -D_UNICODE -DUNICODE
|
||
|
|
||
|
USE_CRTDLL=1
|
||
|
|
||
|
LINKLIBS= \
|
||
|
$(BASEDIR)\public\sdk\lib\*\msvcrt.lib \
|
||
|
$(BASEDIR)\public\sdk\lib\*\kernel32.lib \
|
||
|
$(BASEDIR)\public\sdk\lib\*\version.lib \
|
||
|
$(BASEDIR)\public\sdk\lib\*\user32.lib \
|
||
|
$(BASEDIR)\public\sdk\lib\*\ntdll.lib \
|
||
|
$(BASEDIR)\public\sdk\lib\*\wintrust.lib \
|
||
|
$(BASEDIR)\public\sdk\lib\*\advapip.lib
|
||
|
|
||
|
DELAYLOAD=advapi32.dll ; wintrust.dll
|
||
|
DLOAD_ERROR_HANDLER=kernel32.dll
|
||
|
|
||
|
UMTYPE=console
|
||
|
UMENTRY=wmain
|
||
|
|
||
|
#PRECOMPILED_INCLUDE=pch.h
|
||
|
#PRECOMPILED_PCH=pch.pch
|
||
|
#PRECOMPILED_OBJ=pch.obj
|