35 lines
572 B
Plaintext
35 lines
572 B
Plaintext
|
!if 0
|
||
|
Copyright (c) 1994-1999 Microsoft Corporation
|
||
|
!endif
|
||
|
|
||
|
#
|
||
|
# Create DRVLIB.LIB - Generic multimedia device driver library
|
||
|
#
|
||
|
|
||
|
TARGETNAME=drvlib
|
||
|
TARGETPATH=obj
|
||
|
TARGETTYPE=LIBRARY
|
||
|
|
||
|
C_DEFINES=-DWIN32 -DUNICODE -D_UNICODE
|
||
|
|
||
|
#
|
||
|
# Make sure drvlib is completely built before any other
|
||
|
# component that relies on it begins
|
||
|
#
|
||
|
|
||
|
SYNCHRONIZE_BLOCK=1
|
||
|
|
||
|
|
||
|
INCLUDES=inc;$(DDK_INC_PATH)
|
||
|
|
||
|
SOURCES=reslist.c \
|
||
|
reslist1.c \
|
||
|
drvlib.c \
|
||
|
registry.c \
|
||
|
mixerdd.c \
|
||
|
wavedd.c \
|
||
|
mididd.c \
|
||
|
auxdd.c \
|
||
|
drvutil.c
|
||
|
|