blob: 31b879ab82f4c03a6b601f02879130962c263af6 (
plain)
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
|
TARGETTYPE=DRIVER
TARGETLIBS= \
$(DDK_LIB_PATH)\portcls.lib\
$(DDK_LIB_PATH)\stdunk.lib \
$(SDK_LIB_PATH)\libcntpr.lib
INCLUDES= \
$(DDK_INC_PATH); \
..
MSC_WARNING_LEVEL=-W4 -WX
C_DEFINES= $(C_DEFINES) -D_WIN32 -DUNICODE -D_UNICODE -DPC_IMPLEMENTATION
#
# Different levels of debug printage. First is nothing but
# catastrophic errors, last is everything under the sun.
#
#C_DEFINES= $(C_DEFINES) -DDEBUG_LEVEL=DEBUGLVL_ERROR
C_DEFINES= $(C_DEFINES) -DDEBUG_LEVEL=DEBUGLVL_TERSE
#C_DEFINES= $(C_DEFINES) -DDEBUG_LEVEL=DEBUGLVL_VERBOSE
#C_DEFINES= $(C_DEFINES) -DDEBUG_LEVEL=DEBUGLVL_BLAB
SOURCES=\
..\adapter.cpp \
..\basetopo.cpp \
..\BthhfpDevice.cpp \
..\common.cpp \
..\hw.cpp \
..\kshelper.cpp \
..\savedata.cpp \
..\tonegenerator.cpp \
..\UsbHsDevice.cpp \
..\wavereader.cpp \
|