88 lines
1.8 KiB
Plaintext
88 lines
1.8 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:
|
||
|
|
||
|
Adam Edwards (t-adame) 21-May-1996
|
||
|
|
||
|
|
||
|
Revision History:
|
||
|
|
||
|
!ENDIF
|
||
|
|
||
|
!include ..\..\daytona.inc
|
||
|
|
||
|
#
|
||
|
# The TARGETNAME variable is defined by the developer. It is the name of
|
||
|
# the target (component) that is being built by this makefile. It
|
||
|
# should NOT include any path or file extension information.
|
||
|
#
|
||
|
|
||
|
TARGETNAME=dllhost
|
||
|
|
||
|
#
|
||
|
# The TARGETPATH and TARGETTYPE varialbes are defined by the developer.
|
||
|
# The first specifies where the target is to be build. The second specifies
|
||
|
# the type of target (either PROGRAM, DYNLINK or LIBRARY)
|
||
|
#
|
||
|
|
||
|
TARGETPATH=.
|
||
|
TARGETTYPE=PROGRAM
|
||
|
|
||
|
#
|
||
|
# The INCLUDES variable specifies any include paths that are specific to
|
||
|
# this source directory. Separate multiple directory paths with single
|
||
|
# semicolons. Relative path specifications are okay.
|
||
|
#
|
||
|
|
||
|
INCLUDES=
|
||
|
|
||
|
|
||
|
#
|
||
|
# The SOURCES variable is defined by the developer. It is a list of all the
|
||
|
# source files for this component. Each source file should be on a separate
|
||
|
# line using the line continuation character. This will minimize merge
|
||
|
# conflicts if two developers adding source files to the same component.
|
||
|
#
|
||
|
|
||
|
SOURCES=\
|
||
|
..\dllhost.rc \
|
||
|
..\surrogat.cxx \
|
||
|
..\libtable.cxx \
|
||
|
..\csrgt.cxx \
|
||
|
..\cmonitor.cxx \
|
||
|
..\cdllsrv.cxx \
|
||
|
..\srgtfact.cxx
|
||
|
|
||
|
LINKLIBS=$(BASEDIR)\public\sdk\lib\*\ole32.lib \
|
||
|
$(BASEDIR)\public\sdk\lib\*\uuid.lib \
|
||
|
$(BASEDIR)\public\sdk\lib\*\ntdll.lib \
|
||
|
$(BASEDIR)\public\sdk\lib\*\msvcrt.lib \
|
||
|
|
||
|
|
||
|
UMTYPE=windows
|
||
|
UMENTRY=winmain
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|