61 lines
1 KiB
Plaintext
61 lines
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:
|
|
|
|
Steve Wood (stevewo) 12-Apr-1990
|
|
|
|
NOTE: Commented description of this file is in \nt\bak\bin\sources.tpl
|
|
|
|
!ENDIF
|
|
|
|
|
|
MAJORCOMP=windows
|
|
MINORCOMP=winlogon
|
|
|
|
!if $(IA64)
|
|
TARGETNAME=sunlogon
|
|
!else
|
|
TARGETNAME=winlogon
|
|
!endif
|
|
TARGETPATH=obj
|
|
TARGETTYPE=PROGRAM
|
|
|
|
INCLUDES=$(WINDOWS_INC_PATH);$(BASE_INC_PATH)
|
|
C_DEFINES=-DUNICODE -D_UNICODE
|
|
|
|
!ifndef MSC_WARNING_LEVEL
|
|
MSC_WARNING_LEVEL=-W3 -WX
|
|
!endif
|
|
|
|
BACKGROUND_USE=1
|
|
|
|
SYNCHRONIZE_DRAIN=1
|
|
|
|
SOURCES= \
|
|
sunlogon.c \
|
|
res.rc
|
|
|
|
USE_CRTDLL=1
|
|
|
|
UMTYPE=windows
|
|
UMENTRY=winmain
|
|
LINKLIBS= \
|
|
$(WINDOWS_LIB_PATH)\user32p.lib \
|
|
$(WINDOWS_LIB_PATH)\gdi32p.lib \
|
|
$(SDK_LIB_PATH)\userenv.lib \
|
|
$(SDK_LIB_PATH)\ntdll.lib
|