blob: d531a76980971feca3199e41501ec268e4cefb18 (
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
|
!IF 0
Copyright (c) 1994 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 Cathcart (stevecat) 15-Nov-1994
NOTE: Commented description of this file is in \nt\bak\bin\sources.tpl
Use the following line when this is UNICODE ported
NOT_UNICODE=1
$(BASEDIR)\public\sdk\lib\*\mpr.lib \
!ENDIF
MAJORCOMP=unimodem
MINORCOMP=cpl
TARGETNAME=modem
TARGETPATH=..\lib
TARGETTYPE=DYNLINK
TARGETEXT=cpl
TARGETLIBS=$(BASEDIR)\public\sdk\lib\*\kernel32.lib \
$(BASEDIR)\public\sdk\lib\*\user32.lib \
$(BASEDIR)\public\sdk\lib\*\comctl32.lib \
$(BASEDIR)\public\sdk\lib\*\shell32.lib \
$(BASEDIR)\public\sdk\lib\*\gdi32.lib \
$(BASEDIR)\public\sdk\lib\*\libc.lib \
$(BASEDIR)\public\sdk\lib\*\uuid.lib \
$(BASEDIR)\public\sdk\lib\*\advapi32.lib \
$(BASEDIR)\public\sdk\lib\*\setupapi.lib \
$(BASEDIR)\public\sdk\lib\*\cfgmgr32.lib \
$(BASEDIR)\public\sdk\lib\*\tapi32.lib \
..\lib\*\rovcomm.lib
DLLENTRY= LibMain
NOT_LEAN_AND_MEAN=1
INCLUDES=.;..\inc;..\..\inc;$(BASEDIR)\private\windows\inc
C_DEFINES=-DWIN32 -DWINNT -D_WIN32 -DWINVER=0x0400
UMTYPE=windows
EXPECTED_WINVER=4.0
SOURCES= modem.rc \
dll.c \
cpl.c \
ci.c \
ui.c \
detect.c \
util.c
PRECOMPILED_INCLUDE=proj.h
PRECOMPILED_PCH=proj.pch
PRECOMPILED_OBJ=proj.obj
!IFNDEF 386_WARNING_LEVEL
386_WARNING_LEVEL=/W3
!ENDIF
|