75 lines
1.5 KiB
Plaintext
75 lines
1.5 KiB
Plaintext
!IF 0
|
|
|
|
Copyright (c) 1996 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.
|
|
|
|
!ENDIF
|
|
|
|
!ifndef PRNROOT
|
|
PRNROOT=$(MAKEDIR:\oemdll\um=)
|
|
!endif
|
|
|
|
PSCRIPT=ON
|
|
|
|
MAJORCOMP=windows
|
|
|
|
!IFDEF PSCRIPT
|
|
MINORCOMP=psoemui
|
|
TARGETNAME=psoemui
|
|
!ELSE
|
|
MINORCOMP=unioemui
|
|
TARGETNAME=unioemui
|
|
!ENDIF
|
|
|
|
USE_NTDLL=1
|
|
|
|
TARGETTYPE=DYNLINK
|
|
TARGETTEXT=dll
|
|
TARGETPATH=obj
|
|
TARGETLIBS= \
|
|
$(PRNROOT)\lib\ps\um\$O\pslib.lib \
|
|
$(PRNROOT)\lib\uni\um\$O\unilib.lib \
|
|
$(PRNROOT)\lib\utils\um\$O\utils.lib \
|
|
$(SDK_LIB_PATH)\user32.lib \
|
|
$(SDK_LIB_PATH)\kernel32.lib \
|
|
$(SDK_LIB_PATH)\winspool.lib \
|
|
$(SDK_LIB_PATH)\gdi32.lib \
|
|
$(SDK_LIB_PATH)\shell32.lib \
|
|
$(SDK_LIB_PATH)\comctl32.lib \
|
|
$(WINDOWS_LIB_PATH)\htui.lib \
|
|
$(SDK_LIB_PATH)\ntdll.lib
|
|
|
|
UMTYPE=windows
|
|
|
|
DLLBASE=@$(COFFBASE_TXT_FILE),rasddui
|
|
DLLEntry=DllMain
|
|
NTPROFILEINPUT=yes
|
|
|
|
INCLUDES=.;..\inc;$(INCLUDES);$(PRNROOT)\inc
|
|
|
|
!IFDEF PSCRIPT
|
|
C_DEFINES=$(C_DEFINES) -DPSCRIPT -DDDI_HOOK
|
|
!ELSE
|
|
C_DEFINES=$(C_DEFINES) -DUNIDRV
|
|
!ENDIF
|
|
|
|
SOURCES= \
|
|
initdll.c \
|
|
export.c \
|
|
oem.rc
|
|
|
|
PRECOMPILED_INCLUDE=oem.h
|
|
PRECOMPILED_PCH=precomp.pch
|
|
PRECOMPILED_OBJ=precomp.obj
|
|
|