TOPSRCDIR = ../../..
TOPOBJDIR = ../../..
SRCDIR    = .

TESTDLL   = dsound.dll
IMPORTS   = ole32 version user32 kernel32
EXTRALIBS = -ldxguid -luuid -ldxerr8

CTESTS = \
	capture.c \
	ds3d.c \
	ds3d8.c \
	dsound.c \
	dsound8.c \
	duplex.c \
	propset.c

# Global rules for building dll unit tests     -*-Makefile-*-
#
# Each individual makefile should define the following variables:
# TESTDLL      : the dll to test
# CTESTS       : list of C test programs
# EXTRALIBS    : extra libraries to link in (optional)
# EXTRADEFS    : extra symbol definitions, like -DWINELIB (optional)
#
# plus all variables required by the global Make.rules.in
#

DLLFLAGS     = -D_REENTRANT -fPIC
DEFS         = $(EXTRADEFS)

MODULE       = $(TESTDLL:%.dll=%)_test.exe
TESTRESULTS  = $(CTESTS:.c=.ok)
TESTPROGRAM  = $(MODULE)$(DLLEXT)
RUNTESTFLAGS = -q -P wine -M $(TESTDLL) -T $(TOPOBJDIR) -p $(TESTPROGRAM)

C_SRCS       = $(CTESTS)
ALL_LIBS     = $(IMPORTS:%=-l%) $(EXTRALIBS) $(LDFLAGS) $(LIBS)
EXTRA_OBJS   = testlist.o

CROSSTEST    = $(TESTDLL:%.dll=%)_crosstest.exe
CROSSOBJS    = $(C_SRCS:.c=.cross.o) $(RC_SRCS:.rc=.res.cross.o) $(BISON_SRCS:.y=.tab.cross.o) $(LEX_SRCS:.l=.yy.cross.o) $(IDL_GEN_C_SRCS:.c=.cross.o) testlist.cross.o
CROSSCC      = false
CROSSWINDRES = false

# Global rules shared by all makefiles     -*-Makefile-*-
#
# Each individual makefile must define the following variables:
# TOPSRCDIR    : top-level source directory
# TOPOBJDIR    : top-level object directory
# SRCDIR       : source directory for this module
# MODULE       : name of the module being built
#
# Each individual makefile may define the following additional variables:
# C_SRCS       : C sources for the module
# C_SRCS16     : 16-bit C sources for the module
# RC_SRCS      : resource source files
# EXTRA_SRCS   : extra source files for make depend
# EXTRA_OBJS   : extra object files
# IMPORTS      : dlls to import
# DELAYIMPORTS : dlls to import in delayed mode
# SUBDIRS      : subdirectories that contain a Makefile
# EXTRASUBDIRS : subdirectories that do not contain a Makefile
# INSTALLSUBDIRS : subdirectories to run make install/uninstall into
# MODCFLAGS    : extra CFLAGS for this module

# First some useful definitions

SHELL     = /bin/sh
CC        = gcc
CFLAGS    = -g -O2
CPPFLAGS  = 
LIBS      = 
BISON     = bison
FLEX      = flex
EXEEXT    = 
OBJEXT    = o
LIBEXT    = so
DLLEXT    = .so
IMPLIBEXT = def
LDSHARED  = $(CC) -shared $(SONAME:%=-Wl,-soname,%) $(VERSCRIPT:%=-Wl,--version-script=%)
DLLTOOL   = false
DLLWRAP   = 
AR        = ar rc
RANLIB    = ranlib
STRIP     = strip
WINDRES   = false
LN        = ln
LN_S      = ln -s
TOOLSDIR  = $(TOPOBJDIR)
AS        = as
LD        = ld
LDFLAGS   = 
PRELINK   = /usr/sbin/prelink
RM        = rm -f
MV        = mv
LINT      = 
LINTFLAGS = 
FONTFORGE = fontforge
INCLUDES     = -I$(SRCDIR) -I. -I$(TOPSRCDIR)/include -I$(TOPOBJDIR)/include $(EXTRAINCL)
EXTRACFLAGS  = -Wall -pipe -fno-strict-aliasing -Wdeclaration-after-statement -Wwrite-strings -Wpointer-arith
ALLCFLAGS    = $(INCLUDES) $(DEFS) $(DLLFLAGS) $(EXTRACFLAGS) $(CPPFLAGS) $(CFLAGS) $(MODCFLAGS)
ALLLINTFLAGS = $(INCLUDES) $(DEFS) $(LINTFLAGS)
IDLFLAGS     = $(INCLUDES) $(DEFS) $(EXTRAIDLFLAGS)
WINEBUILDFLAGS = $(DLLFLAGS) --as-cmd "$(AS)"
MKINSTALLDIRS= $(TOPSRCDIR)/tools/mkinstalldirs -m 755
WINAPI_CHECK = $(TOPSRCDIR)/tools/winapi/winapi_check
WINEWRAPPER  = $(TOPSRCDIR)/tools/winewrapper
C2MAN        = $(TOPSRCDIR)/tools/c2man.pl
RUNTEST      = $(TOPSRCDIR)/tools/runtest
WINEBUILD    = $(TOOLSDIR)/tools/winebuild/winebuild
MAKEDEP      = $(TOOLSDIR)/tools/makedep
MAKECTESTS   = $(TOOLSDIR)/tools/make_ctests
WRC          = $(TOOLSDIR)/tools/wrc/wrc
WMC          = $(TOOLSDIR)/tools/wmc/wmc
WIDL         = $(TOOLSDIR)/tools/widl/widl
WINEGCC      = $(TOOLSDIR)/tools/winegcc/winegcc
RELPATH      = $(TOOLSDIR)/tools/relpath
SFNT2FNT     = $(TOOLSDIR)/tools/sfnt2fnt
FNT2FON      = $(TOOLSDIR)/tools/fnt2fon
RC           = $(WRC)
RC16         = $(WRC)
RCFLAGS      = --nostdinc $(INCLUDES) $(DEFS) $(EXTRARCFLAGS)
RC16FLAGS    = -O res16 $(RCFLAGS)
LDPATH       = 
DLLDIR       = $(TOPOBJDIR)/dlls
LIBPORT      = $(TOPOBJDIR)/libs/port/libwine_port.a
LIBWPP       = $(TOPOBJDIR)/libs/wpp/libwpp.a
LIBWINE      = -L$(TOPOBJDIR)/libs/wine -lwine
LDRPATH_INSTALL = -Wl,--rpath,\$$ORIGIN/`$(RELPATH) $(bindir) $(libdir)` -Wl,--enable-new-dtags
LDRPATH_LOCAL   = -Wl,--rpath,\$$ORIGIN/$(TOPOBJDIR)/libs/wine



# Installation infos

INSTALL         = /usr/bin/install -c $(INSTALL_FLAGS)
INSTALL_PROGRAM = ${INSTALL} $(INSTALL_PROGRAM_FLAGS)
INSTALL_SCRIPT  = ${INSTALL} $(INSTALL_SCRIPT_FLAGS)
INSTALL_DATA    = ${INSTALL} -m 644 $(INSTALL_DATA_FLAGS)
prefix          = /usr/local
exec_prefix     = ${prefix}
bindir          = ${exec_prefix}/bin
libdir          = ${exec_prefix}/lib
datarootdir     = ${prefix}/share
datadir         = ${datarootdir}
infodir         = ${datarootdir}/info
mandir          = ${datarootdir}/man
sysconfdir      = ${prefix}/etc
includedir      = ${prefix}/include/wine
dlldir          = ${exec_prefix}/lib/wine
prog_manext     = 1
api_manext      = 3w
conf_manext     = 5
CLEAN_FILES     = *.o *.a *.so *.ln *.$(LIBEXT) \\\#*\\\# *~ *% .\\\#* *.bak *.orig *.rej *.flc core

IDL_GEN_C_SRCS  = $(IDL_C_SRCS:.idl=_c.c) $(IDL_I_SRCS:.idl=_i.c) \
                  $(IDL_P_SRCS:.idl=_p.c) $(IDL_S_SRCS:.idl=_s.c)
IDL_GEN_HEADERS = $(IDL_H_SRCS:.idl=.h) $(IDL_C_SRCS:.idl=.h) $(IDL_I_SRCS:.idl=.h) \
                  $(IDL_P_SRCS:.idl=.h) $(IDL_S_SRCS:.idl=.h)

CLEAN_TARGETS = $(IDL_GEN_C_SRCS) $(IDL_GEN_HEADERS) $(IDL_TLB_SRCS:.idl=.tlb) \
                $(BISON_SRCS:.y=.tab.c) $(BISON_SRCS:.y=.tab.h) $(LEX_SRCS:.l=.yy.c) \
                $(MC_SRCS:.mc=.mc.rc) $(RC_SRCS:.rc=.res) $(RC_SRCS16:.rc=.res)

OBJS = $(C_SRCS:.c=.o) $(BISON_SRCS:.y=.tab.o) $(LEX_SRCS:.l=.yy.o) $(IDL_GEN_C_SRCS:.c=.o) $(EXTRA_OBJS)

RCOBJS = $(RC_SRCS:.rc=.res.o)
LINTS  = $(C_SRCS:.c=.ln)

# Implicit rules

.SUFFIXES: .mc .rc .mc.rc .res .res.o .spec .spec.o .idl .tlb .h .y .l .tab.c .tab.h .yy.c .ok .sfd .ttf .man.in .man _c.c _i.c _p.c _s.c

.c.o:
	$(CC) -c $(ALLCFLAGS) -o $@ $<

.s.o:
	$(AS) -o $@ $<

.y.tab.c:
	$(BISON) $(BISONFLAGS) -p $*_ -o $@ $<

.y.tab.h:
	$(BISON) $(BISONFLAGS) -p $*_ -o $*.tab.c -d $<

.l.yy.c:
	$(FLEX) $(LEXFLAGS) -o$@ $<

.mc.mc.rc:
	$(LDPATH) $(WMC) -i -U -H /dev/null -o $@ $<

.rc.res:
	$(LDPATH) $(RC) $(RCFLAGS) -fo$@ $<

.res.res.o:
	$(WINDRES) -i $< -o $@

.spec.spec.o:
	$(WINEBUILD) $(WINEBUILDFLAGS) --dll -o $@ --main-module $(MODULE) --export $<

.idl.h:
	$(WIDL) $(IDLFLAGS) -h -H $@ $<

.idl_c.c:
	$(WIDL) $(IDLFLAGS) -c -C $@ $<

.idl_i.c:
	$(WIDL) $(IDLFLAGS) -u -U $@ $<

.idl_p.c:
	$(WIDL) $(IDLFLAGS) -p -P $@ $<

.idl_s.c:
	$(WIDL) $(IDLFLAGS) -s -S $@ $<

.idl.tlb:
	$(WIDL) $(IDLFLAGS) -t -T $@ $<

.c.ln:
	$(LINT) -c $(ALLLINTFLAGS) $< || ( $(RM) $@ && exit 1 )

.c.ok:
	$(RUNTEST) $(RUNTESTFLAGS) $< && touch $@

.sfd.ttf:
	$(FONTFORGE) -script $(TOPSRCDIR)/fonts/genttf.ff $< $@

.man.in.man:
	sed -e 's,@bindir\@,$(bindir),g' -e 's,@dlldir\@,$(dlldir),g' -e 's,@PACKAGE_STRING\@,Wine 0.9.48,g' $< >$@ || ($(RM) $@ && false)

# 'all' target first in case the enclosing Makefile didn't define any target

all:

filter: dummy
	@$(TOPSRCDIR)/tools/winapi/make_filter --make $(MAKE) all

.PHONY: all filter

# Rules for resources

$(RC_SRCS:.rc=.res) $(RC_SRCS16:.rc=.res): $(WRC) $(IDL_TLB_SRCS:.idl=.tlb)

# Rule for linting

$(MODULE).ln : $(LINTS)
	if test "$(LINTS)" ; \
	then \
		$(LINT) $(ALLLINTFLAGS) -o$(MODULE) $(LINTS) ; \
	        $(MV) llib-l$(MODULE).ln $(MODULE).ln ; \
	else \
		$(LINT) $(ALLLINTFLAGS) -C$(MODULE) /dev/null ; \
	fi

lint:: $(MODULE).ln

# Rules for Windows API checking

winapi_check:: dummy
	$(WINAPI_CHECK) $(WINAPI_CHECK_FLAGS) $(WINAPI_CHECK_EXTRA_FLAGS) .

.PHONY: winapi_check

# Rules for dependencies

DEPEND_SRCS = $(C_SRCS) $(C_SRCS16) $(RC_SRCS) $(RC_SRCS16) $(MC_SRCS) $(IDL_H_SRCS) $(IDL_C_SRCS) $(IDL_I_SRCS) $(IDL_P_SRCS) $(IDL_S_SRCS) $(IDL_GEN_C_SRCS) $(BISON_SRCS) $(LEX_SRCS) $(EXTRA_SRCS)

$(SUBDIRS:%=%/__depend__): dummy
	@cd `dirname $@` && $(MAKE) depend

depend: $(SUBDIRS:%=%/__depend__) dummy
	$(MAKEDEP) -C$(SRCDIR) -S$(TOPSRCDIR) -T$(TOPOBJDIR) $(EXTRAINCL) $(DEPEND_SRCS)

.PHONY: depend $(SUBDIRS:%=%/__depend__)

# Rules for cleaning

$(SUBDIRS:%=%/__clean__): dummy
	@cd `dirname $@` && $(MAKE) clean

$(EXTRASUBDIRS:%=%/__clean__): dummy
	-cd `dirname $@` && $(RM) $(CLEAN_FILES)

clean:: $(SUBDIRS:%=%/__clean__) $(EXTRASUBDIRS:%=%/__clean__)
	$(RM) $(CLEAN_FILES) $(CLEAN_TARGETS) $(PROGRAMS) $(MANPAGES)

.PHONY: clean $(SUBDIRS:%=%/__clean__) $(EXTRASUBDIRS:%=%/__clean__)

# Rules for installing

$(SUBDIRS:%=%/__install__): dummy
	@cd `dirname $@` && $(MAKE) install

$(SUBDIRS:%=%/__install-lib__): dummy
	@cd `dirname $@` && $(MAKE) install-lib

$(SUBDIRS:%=%/__install-dev__): dummy
	@cd `dirname $@` && $(MAKE) install-dev

$(SUBDIRS:%=%/__uninstall__): dummy
	@cd `dirname $@` && $(MAKE) uninstall

install:: $(INSTALLSUBDIRS:%=%/__install__)

uninstall:: $(INSTALLSUBDIRS:%=%/__uninstall__)

$(INSTALLDIRS):
	$(MKINSTALLDIRS) $@

.PHONY: install install-lib install-dev uninstall \
	$(SUBDIRS:%=%/__install__) $(SUBDIRS:%=%/__uninstall__) \
	$(SUBDIRS:%=%/__install-lib__) $(SUBDIRS:%=%/__install-dev__)

# Rules for testing

$(TESTSUBDIRS:%=%/__test__): dummy
	@cd `dirname $@` && $(MAKE) test

$(TESTSUBDIRS:%=%/__crosstest__): dummy
	@cd `dirname $@` && $(MAKE) crosstest

$(TESTSUBDIRS:%=%/__testclean__): dummy
	@cd `dirname $@` && $(MAKE) testclean

check test:: $(TESTSUBDIRS:%=%/__test__)

crosstest:: $(TESTSUBDIRS:%=%/__crosstest__)

testclean:: $(TESTSUBDIRS:%=%/__testclean__)

.PHONY: check test testclean crosstest $(TESTSUBDIRS:%=%/__test__) $(TESTSUBDIRS:%=%/__crosstest__) $(TESTSUBDIRS:%=%/__testclean__) 

# Rules for auto documentation

$(DOCSUBDIRS:%=%/__man__): dummy
	@cd `dirname $@` && $(MAKE) man

$(DOCSUBDIRS:%=%/__doc_html__): dummy
	@cd `dirname $@` && $(MAKE) doc-html

$(DOCSUBDIRS:%=%/__doc_sgml__): dummy
	@cd `dirname $@` && $(MAKE) doc-sgml

man: $(DOCSUBDIRS:%=%/__man__)
doc-html: $(DOCSUBDIRS:%=%/__doc_html__)
doc-sgml: $(DOCSUBDIRS:%=%/__doc_sgml__)

.PHONY: man doc-html doc-sgml $(DOCSUBDIRS:%=%/__man__) $(DOCSUBDIRS:%=%/__doc_html__) $(DOCSUBDIRS:%=%/__doc_sgml__)

# Misc. rules

$(MC_SRCS:.mc=.mc.rc): $(WMC)

$(IDL_GEN_HEADERS) $(IDL_GEN_C_SRCS) $(IDL_TLB_SRCS:.idl=.tlb): $(WIDL)

$(SUBDIRS): dummy
	@cd $@ && $(MAKE)

dummy:

.PHONY: dummy $(SUBDIRS)

# End of global rules

all: $(TESTPROGRAM)

# Rules for .so main module

$(MODULE).so: $(OBJS) $(RC_SRCS:.rc=.res) Makefile.in
	$(WINEGCC) -B$(TOOLSDIR)/tools/winebuild -mconsole $(OBJS) $(RC_SRCS:.rc=.res) -o $@ $(LIBPORT) $(ALL_LIBS)

# Rules for .exe main module

$(MODULE): $(OBJS) $(RCOBJS) Makefile.in
	$(CC) $(OBJS) $(RCOBJS) -o $@ $(ALL_LIBS)

# Rules for building test list

testlist.c: Makefile.in $(MAKECTESTS)
	$(MAKECTESTS) -o $@ $(CTESTS)

testlist.o: testlist.c $(TOPSRCDIR)/include/wine/test.h

# Rules for testing

check test:: $(TESTRESULTS)

$(TESTRESULTS): $(MODULE)$(DLLEXT) ../$(TESTDLL)$(DLLEXT)

# Rules for cross-compiling tests

.SUFFIXES: .cross.o .res.cross.o

.c.cross.o:
	$(CROSSCC) -c $(ALLCFLAGS) -o $@ $<

.res.res.cross.o:
	$(CROSSWINDRES) -i $< -o $@

crosstest:: 

$(CROSSTEST): $(CROSSOBJS) Makefile.in
	$(CROSSCC) $(CROSSOBJS) -o $@ $(ALL_LIBS)

$(CROSSOBJS): $(IDL_GEN_HEADERS)

# Rules for cleaning

testclean::
	$(RM) $(TESTRESULTS)

clean::
	$(RM) testlist.c $(MODULE) $(TESTRESULTS) $(CROSSTEST)

### Dependencies:
capture.o: capture.c ../../../include/windows.h \
 ../../../include/winresrc.h ../../../include/dlgs.h \
 ../../../include/winver.h ../../../include/excpt.h \
 ../../../include/windef.h ../../../include/winnt.h \
 ../../../include/basetsd.h ../../../include/guiddef.h \
 ../../../include/pshpack2.h ../../../include/poppack.h \
 ../../../include/pshpack8.h ../../../include/pshpack4.h \
 ../../../include/winbase.h ../../../include/winerror.h \
 ../../../include/wingdi.h ../../../include/winuser.h \
 ../../../include/winnls.h ../../../include/wincon.h \
 ../../../include/winreg.h ../../../include/reason.h \
 ../../../include/winnetwk.h ../../../include/cderr.h \
 ../../../include/dde.h ../../../include/ddeml.h \
 ../../../include/lzexpand.h ../../../include/mmsystem.h \
 ../../../include/pshpack1.h ../../../include/nb30.h \
 ../../../include/rpc.h ../../../include/rpcdce.h \
 ../../../include/rpcdcep.h ../../../include/rpcnterr.h \
 ../../../include/shellapi.h ../../../include/winsock2.h \
 ../../../include/winsock.h ../../../include/wincrypt.h \
 ../../../include/bcrypt.h ../../../include/winspool.h \
 ../../../include/ole2.h ../../../include/objbase.h \
 ../../../include/rpcndr.h ../../../include/wtypes.h \
 ../../../include/unknwn.h ../../../include/objidl.h \
 ../../../include/cguid.h ../../../include/urlmon.h \
 ../../../include/oleidl.h ../../../include/servprov.h \
 ../../../include/msxml.h ../../../include/oaidl.h \
 ../../../include/propidl.h ../../../include/oleauto.h \
 ../../../include/commdlg.h ../../../include/prsht.h \
 ../../../include/winsvc.h ../../../include/mcx.h \
 ../../../include/imm.h ../../../include/wine/test.h \
 ../../../include/dsound.h ../../../include/mmreg.h \
 ../../../include/dxerr8.h ../../../include/dsconf.h dsound_test.h
ds3d.o: ds3d.c ../../../include/windows.h ../../../include/winresrc.h \
 ../../../include/dlgs.h ../../../include/winver.h \
 ../../../include/excpt.h ../../../include/windef.h \
 ../../../include/winnt.h ../../../include/basetsd.h \
 ../../../include/guiddef.h ../../../include/pshpack2.h \
 ../../../include/poppack.h ../../../include/pshpack8.h \
 ../../../include/pshpack4.h ../../../include/winbase.h \
 ../../../include/winerror.h ../../../include/wingdi.h \
 ../../../include/winuser.h ../../../include/winnls.h \
 ../../../include/wincon.h ../../../include/winreg.h \
 ../../../include/reason.h ../../../include/winnetwk.h \
 ../../../include/cderr.h ../../../include/dde.h \
 ../../../include/ddeml.h ../../../include/lzexpand.h \
 ../../../include/mmsystem.h ../../../include/pshpack1.h \
 ../../../include/nb30.h ../../../include/rpc.h \
 ../../../include/rpcdce.h ../../../include/rpcdcep.h \
 ../../../include/rpcnterr.h ../../../include/shellapi.h \
 ../../../include/winsock2.h ../../../include/winsock.h \
 ../../../include/wincrypt.h ../../../include/bcrypt.h \
 ../../../include/winspool.h ../../../include/ole2.h \
 ../../../include/objbase.h ../../../include/rpcndr.h \
 ../../../include/wtypes.h ../../../include/unknwn.h \
 ../../../include/objidl.h ../../../include/cguid.h \
 ../../../include/urlmon.h ../../../include/oleidl.h \
 ../../../include/servprov.h ../../../include/msxml.h \
 ../../../include/oaidl.h ../../../include/propidl.h \
 ../../../include/oleauto.h ../../../include/commdlg.h \
 ../../../include/prsht.h ../../../include/winsvc.h \
 ../../../include/mcx.h ../../../include/imm.h \
 ../../../include/wine/test.h ../../../include/dsound.h \
 ../../../include/dxerr8.h dsound_test.h
ds3d8.o: ds3d8.c ../../../include/windows.h \
 ../../../include/winresrc.h ../../../include/dlgs.h \
 ../../../include/winver.h ../../../include/excpt.h \
 ../../../include/windef.h ../../../include/winnt.h \
 ../../../include/basetsd.h ../../../include/guiddef.h \
 ../../../include/pshpack2.h ../../../include/poppack.h \
 ../../../include/pshpack8.h ../../../include/pshpack4.h \
 ../../../include/winbase.h ../../../include/winerror.h \
 ../../../include/wingdi.h ../../../include/winuser.h \
 ../../../include/winnls.h ../../../include/wincon.h \
 ../../../include/winreg.h ../../../include/reason.h \
 ../../../include/winnetwk.h ../../../include/cderr.h \
 ../../../include/dde.h ../../../include/ddeml.h \
 ../../../include/lzexpand.h ../../../include/mmsystem.h \
 ../../../include/pshpack1.h ../../../include/nb30.h \
 ../../../include/rpc.h ../../../include/rpcdce.h \
 ../../../include/rpcdcep.h ../../../include/rpcnterr.h \
 ../../../include/shellapi.h ../../../include/winsock2.h \
 ../../../include/winsock.h ../../../include/wincrypt.h \
 ../../../include/bcrypt.h ../../../include/winspool.h \
 ../../../include/ole2.h ../../../include/objbase.h \
 ../../../include/rpcndr.h ../../../include/wtypes.h \
 ../../../include/unknwn.h ../../../include/objidl.h \
 ../../../include/cguid.h ../../../include/urlmon.h \
 ../../../include/oleidl.h ../../../include/servprov.h \
 ../../../include/msxml.h ../../../include/oaidl.h \
 ../../../include/propidl.h ../../../include/oleauto.h \
 ../../../include/commdlg.h ../../../include/prsht.h \
 ../../../include/winsvc.h ../../../include/mcx.h \
 ../../../include/imm.h ../../../include/wine/test.h \
 ../../../include/dsound.h ../../../include/dxerr8.h dsound_test.h
dsound.o: dsound.c ../../../include/windows.h \
 ../../../include/winresrc.h ../../../include/dlgs.h \
 ../../../include/winver.h ../../../include/excpt.h \
 ../../../include/windef.h ../../../include/winnt.h \
 ../../../include/basetsd.h ../../../include/guiddef.h \
 ../../../include/pshpack2.h ../../../include/poppack.h \
 ../../../include/pshpack8.h ../../../include/pshpack4.h \
 ../../../include/winbase.h ../../../include/winerror.h \
 ../../../include/wingdi.h ../../../include/winuser.h \
 ../../../include/winnls.h ../../../include/wincon.h \
 ../../../include/winreg.h ../../../include/reason.h \
 ../../../include/winnetwk.h ../../../include/cderr.h \
 ../../../include/dde.h ../../../include/ddeml.h \
 ../../../include/lzexpand.h ../../../include/mmsystem.h \
 ../../../include/pshpack1.h ../../../include/nb30.h \
 ../../../include/rpc.h ../../../include/rpcdce.h \
 ../../../include/rpcdcep.h ../../../include/rpcnterr.h \
 ../../../include/shellapi.h ../../../include/winsock2.h \
 ../../../include/winsock.h ../../../include/wincrypt.h \
 ../../../include/bcrypt.h ../../../include/winspool.h \
 ../../../include/ole2.h ../../../include/objbase.h \
 ../../../include/rpcndr.h ../../../include/wtypes.h \
 ../../../include/unknwn.h ../../../include/objidl.h \
 ../../../include/cguid.h ../../../include/urlmon.h \
 ../../../include/oleidl.h ../../../include/servprov.h \
 ../../../include/msxml.h ../../../include/oaidl.h \
 ../../../include/propidl.h ../../../include/oleauto.h \
 ../../../include/commdlg.h ../../../include/prsht.h \
 ../../../include/winsvc.h ../../../include/mcx.h \
 ../../../include/imm.h ../../../include/wine/test.h \
 ../../../include/dsound.h ../../../include/dxerr8.h \
 ../../../include/dsconf.h dsound_test.h
dsound8.o: dsound8.c ../../../include/windows.h \
 ../../../include/winresrc.h ../../../include/dlgs.h \
 ../../../include/winver.h ../../../include/excpt.h \
 ../../../include/windef.h ../../../include/winnt.h \
 ../../../include/basetsd.h ../../../include/guiddef.h \
 ../../../include/pshpack2.h ../../../include/poppack.h \
 ../../../include/pshpack8.h ../../../include/pshpack4.h \
 ../../../include/winbase.h ../../../include/winerror.h \
 ../../../include/wingdi.h ../../../include/winuser.h \
 ../../../include/winnls.h ../../../include/wincon.h \
 ../../../include/winreg.h ../../../include/reason.h \
 ../../../include/winnetwk.h ../../../include/cderr.h \
 ../../../include/dde.h ../../../include/ddeml.h \
 ../../../include/lzexpand.h ../../../include/mmsystem.h \
 ../../../include/pshpack1.h ../../../include/nb30.h \
 ../../../include/rpc.h ../../../include/rpcdce.h \
 ../../../include/rpcdcep.h ../../../include/rpcnterr.h \
 ../../../include/shellapi.h ../../../include/winsock2.h \
 ../../../include/winsock.h ../../../include/wincrypt.h \
 ../../../include/bcrypt.h ../../../include/winspool.h \
 ../../../include/ole2.h ../../../include/objbase.h \
 ../../../include/rpcndr.h ../../../include/wtypes.h \
 ../../../include/unknwn.h ../../../include/objidl.h \
 ../../../include/cguid.h ../../../include/urlmon.h \
 ../../../include/oleidl.h ../../../include/servprov.h \
 ../../../include/msxml.h ../../../include/oaidl.h \
 ../../../include/propidl.h ../../../include/oleauto.h \
 ../../../include/commdlg.h ../../../include/prsht.h \
 ../../../include/winsvc.h ../../../include/mcx.h \
 ../../../include/imm.h ../../../include/wine/test.h \
 ../../../include/dsound.h ../../../include/dxerr8.h \
 ../../../include/dsconf.h dsound_test.h
duplex.o: duplex.c ../../../include/windows.h \
 ../../../include/winresrc.h ../../../include/dlgs.h \
 ../../../include/winver.h ../../../include/excpt.h \
 ../../../include/windef.h ../../../include/winnt.h \
 ../../../include/basetsd.h ../../../include/guiddef.h \
 ../../../include/pshpack2.h ../../../include/poppack.h \
 ../../../include/pshpack8.h ../../../include/pshpack4.h \
 ../../../include/winbase.h ../../../include/winerror.h \
 ../../../include/wingdi.h ../../../include/winuser.h \
 ../../../include/winnls.h ../../../include/wincon.h \
 ../../../include/winreg.h ../../../include/reason.h \
 ../../../include/winnetwk.h ../../../include/cderr.h \
 ../../../include/dde.h ../../../include/ddeml.h \
 ../../../include/lzexpand.h ../../../include/mmsystem.h \
 ../../../include/pshpack1.h ../../../include/nb30.h \
 ../../../include/rpc.h ../../../include/rpcdce.h \
 ../../../include/rpcdcep.h ../../../include/rpcnterr.h \
 ../../../include/shellapi.h ../../../include/winsock2.h \
 ../../../include/winsock.h ../../../include/wincrypt.h \
 ../../../include/bcrypt.h ../../../include/winspool.h \
 ../../../include/ole2.h ../../../include/objbase.h \
 ../../../include/rpcndr.h ../../../include/wtypes.h \
 ../../../include/unknwn.h ../../../include/objidl.h \
 ../../../include/cguid.h ../../../include/urlmon.h \
 ../../../include/oleidl.h ../../../include/servprov.h \
 ../../../include/msxml.h ../../../include/oaidl.h \
 ../../../include/propidl.h ../../../include/oleauto.h \
 ../../../include/commdlg.h ../../../include/prsht.h \
 ../../../include/winsvc.h ../../../include/mcx.h \
 ../../../include/imm.h ../../../include/wine/test.h \
 ../../../include/dsound.h ../../../include/mmreg.h \
 ../../../include/dxerr8.h ../../../include/dsconf.h dsound_test.h
propset.o: propset.c ../../../include/windows.h \
 ../../../include/winresrc.h ../../../include/dlgs.h \
 ../../../include/winver.h ../../../include/excpt.h \
 ../../../include/windef.h ../../../include/winnt.h \
 ../../../include/basetsd.h ../../../include/guiddef.h \
 ../../../include/pshpack2.h ../../../include/poppack.h \
 ../../../include/pshpack8.h ../../../include/pshpack4.h \
 ../../../include/winbase.h ../../../include/winerror.h \
 ../../../include/wingdi.h ../../../include/winuser.h \
 ../../../include/winnls.h ../../../include/wincon.h \
 ../../../include/winreg.h ../../../include/reason.h \
 ../../../include/winnetwk.h ../../../include/cderr.h \
 ../../../include/dde.h ../../../include/ddeml.h \
 ../../../include/lzexpand.h ../../../include/mmsystem.h \
 ../../../include/pshpack1.h ../../../include/nb30.h \
 ../../../include/rpc.h ../../../include/rpcdce.h \
 ../../../include/rpcdcep.h ../../../include/rpcnterr.h \
 ../../../include/shellapi.h ../../../include/winsock2.h \
 ../../../include/winsock.h ../../../include/wincrypt.h \
 ../../../include/bcrypt.h ../../../include/winspool.h \
 ../../../include/ole2.h ../../../include/objbase.h \
 ../../../include/rpcndr.h ../../../include/wtypes.h \
 ../../../include/unknwn.h ../../../include/objidl.h \
 ../../../include/cguid.h ../../../include/urlmon.h \
 ../../../include/oleidl.h ../../../include/servprov.h \
 ../../../include/msxml.h ../../../include/oaidl.h \
 ../../../include/propidl.h ../../../include/oleauto.h \
 ../../../include/commdlg.h ../../../include/prsht.h \
 ../../../include/winsvc.h ../../../include/mcx.h \
 ../../../include/imm.h ../../../include/wine/test.h \
 ../../../include/dsound.h ../../../include/dsconf.h \
 ../../../include/dxerr8.h dsound_test.h ../../../include/initguid.h
