57 lines
1.0 KiB
Plaintext
57 lines
1.0 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
|
|
|
|
|
|
MAJORCOMP=winlogon
|
|
MINORCOMP=sethc
|
|
|
|
TARGETNAME=sethc
|
|
TARGETPATH=obj
|
|
TARGETTYPE=PROGRAM
|
|
|
|
INCLUDES=$(TARGET_DIRECTORY);$(WINDOWS_INC_PATH);$(SHELL_INC_PATH)
|
|
|
|
C_DEFINES=-DUNICODE -DWIN32 -D_UNICODE
|
|
|
|
!IF !$(FREEBUILD)
|
|
C_DEFINES=$(C_DEFINES) -DDEBUG -DDBG
|
|
!ENDIF
|
|
|
|
SOURCES= res.rc \
|
|
sethc.c \
|
|
access.c
|
|
|
|
UMTYPE=windows
|
|
UMENTRY=winmain
|
|
TARGETLIBS= \
|
|
$(SDK_LIB_PATH)\ntdll.lib \
|
|
$(WINDOWS_LIB_PATH)\user32p.lib \
|
|
$(SDK_LIB_PATH)\ole32.lib \
|
|
$(SDK_LIB_PATH)\shell32.lib \
|
|
$(SHELL_LIB_PATH)\uxthemep.lib \
|
|
$(SDK_LIB_PATH)\oleacc.lib \
|
|
$(SDK_LIB_PATH)\uuid.lib \
|
|
|
|
|