54 lines
993 B
Plaintext
54 lines
993 B
Plaintext
!IF 0
|
|
|
|
Copyright (c) 2000 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:
|
|
|
|
Ben Hertzberg (05-24-2001)
|
|
|
|
!ENDIF
|
|
|
|
TARGETNAME=PowerCfg
|
|
TARGETPATH=obj
|
|
TARGETTYPE=PROGRAM
|
|
|
|
INCLUDES=\
|
|
$(ADMIN_INC_PATH)
|
|
|
|
SOURCES=\
|
|
PowerCfg.c \
|
|
PowerCfg.rc
|
|
|
|
C_DEFINES= -DUNICODE -D_UNICODE -DSECURITY_WIN32
|
|
USE_VCCOM=1
|
|
USE_NTDLL=1
|
|
USE_MSVCRT=1
|
|
USE_NATIVE_EH=ASYNC
|
|
|
|
!IF $(386)
|
|
BINPLACE_PLACEFILE=placefil.txt
|
|
!ENDIF
|
|
|
|
UMENTRY=wmain
|
|
UMTYPE=console
|
|
UMLIBS=\
|
|
$(UMLIBS) \
|
|
$(ADMIN_LIB_PATH)\cmdline.lib \
|
|
$(SDK_LIB_PATH)\user32.lib \
|
|
$(SDK_LIB_PATH)\mpr.lib \
|
|
$(SDK_LIB_PATH)\ws2_32.lib \
|
|
$(SDK_LIB_PATH)\shlwapi.lib \
|
|
$(SDK_LIB_PATH)\powrprof.lib
|
|
|