mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
1.9 KiB
79 lines
1.9 KiB
!IF 0
|
|
|
|
Copyright (c) 1989-1991 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.
|
|
|
|
|
|
History:
|
|
|
|
Created 12-Sep-1991 by Richard L Firth (rfirth)
|
|
from template created 12-Apr-1990 by Steve Wood (stevewo)
|
|
|
|
|
|
NOTE: Commented description of this file is in \nt\public\oak\bin\sources.tpl
|
|
|
|
!ENDIF
|
|
|
|
MAJORCOMP=mvdm
|
|
MINORCOMP=redir
|
|
|
|
!IFNDEF NTVDM_NET_PATH
|
|
NTVDM_NET_PATH=..\..\net
|
|
!ENDIF
|
|
|
|
!IF $(PPC)
|
|
PPC_OPTIMIZATION=/Ox -Gy -Qmcc,-Aretsize1 -Qmcc,-td16
|
|
MSC_OPTIMIZATION=/Ox -Gy -Qmcc,-Aretsize1 -Qmcc,-td16
|
|
!ENDIF
|
|
|
|
TARGETNAME=vdmredir
|
|
TARGETPATH=$(BASEDIR)\public\sdk\lib
|
|
TARGETTYPE=DYNLINK
|
|
TARGETLIBS=$(BASEDIR)\public\sdk\lib\*\advapi32.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\kernel32.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\crtdll.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\netapi32.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\ntvdm.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\xactsrv.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\netlib.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\netrap.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\rpcrt4.lib \
|
|
$(BASEDIR)\Public\SDK\Lib\*\rxcommon.lib \
|
|
$(BASEDIR)\Public\SDK\Lib\*\rxapi.lib
|
|
|
|
DLLENTRY=VrDllInitialize
|
|
DLLBASE=0x03000000
|
|
|
|
USE_CRTDLL=1
|
|
|
|
INCLUDES=..\inc;..\..\inc;..\..\net\rpcxlate;..\..\net\inc;..\softpc.new\base\inc;..\softpc.new\host\inc
|
|
|
|
SOURCES=vdmredir.rc \
|
|
vrmslot.c \
|
|
vrnmpipe.c \
|
|
vrdisp.c \
|
|
vrinit.c \
|
|
vrmisc.c \
|
|
vrnetapi.c \
|
|
vrnetb.c \
|
|
vrputil.c \
|
|
vrremote.c \
|
|
vrdlc5c.c \
|
|
vrdlcpst.c \
|
|
vrdlcbuf.c \
|
|
vrdlcdbg.c \
|
|
vrdebug.c \
|
|
vrdll.c
|
|
|
|
C_DEFINES=-DVDMREDIR_DLL -DUNALIGNED_VDM_POINTERS $(C_DEFINES)
|
|
|