summaryrefslogtreecommitdiffstats
path: root/private/oleutest/act/server/daytona/sources
blob: 05467a74cdb1a7ec186df595599c6d5a8c3c1016 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
!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-1989


Revision History:

!ENDIF

#
# 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=actsrv

#
# 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

USE_CRTDLL=1

#
# 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=.;..\..\srvcore

#
# 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=\
    ..\server.cxx  \
    ..\pswrd.cxx


C_DEFINES=-DUNICODE

LINKLIBS=\
    ..\..\srvcore\daytona\obj\*\srvcore.lib \
    $(BASEDIR)\public\sdk\lib\*\kernel32.lib   \
    $(BASEDIR)\public\sdk\lib\*\user32.lib     \
    $(BASEDIR)\public\sdk\lib\*\advapi32.lib   \
    $(BASEDIR)\public\sdk\lib\*\ntdll.lib      \
    $(BASEDIR)\public\sdk\lib\*\ole32.lib      \
    $(BASEDIR)\public\sdk\lib\*\rpcrt4.lib     \
    $(BASEDIR)\public\sdk\lib\*\uuid.lib       \
    ..\..\common\daytona\*\common.lib

UMTYPE=console