blob: 5690351a2ef57f780fb8913f5d782cd84fc6a141 (
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
|
!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:
NOTE: Commented description of this file is in \nt\bak\bin\sources.tpl
!ENDIF
MAJORCOMP=nw
MINORCOMP=nwlib
TARGETNAME=nwlib
TARGETPATH=obj
TARGETTYPE=LIBRARY
INCLUDES=..\inc;$(_NTROOT)\private\inc;
MSC_WARNING_LEVEL=/W3 /WX
SOURCES= \
canon.c \
packstr.c \
exchange.c \
regacl.c \
nwapi32.c \
nwcapi32.c \
nwpapi32.c \
ndsapi32.c
TARGETLIBS= \
$(BASEDIR)\Public\Sdk\Lib\*\kernel32.lib \
$(BASEDIR)\Public\Sdk\Lib\*\user32.lib \
$(BASEDIR)\Public\Sdk\Lib\*\advapi32.lib \
$(BASEDIR)\Public\Sdk\Lib\*\nwprovau.lib \
$(BASEDIR)\Public\Sdk\Lib\*\ntvdm.lib
UNICODE=1
NET_C_DEFINES=-DRPC_NO_WINDOWS_H -DNWDBG
UMTYPE=console
UMTEST=
UMLIBS=
OPTIONAL_UMTEST=
!IFDEF MARS_PCH
PRECOMPILED_INCLUDE=procs.h
PRECOMPILED_PCH=procs.pch
PRECOMPILED_OBJ=procs.obj
!ENDIF
|