## FLXLab v2.5 - A program for running psychology experiments.  
## Copyright (C) 2010 Todd R. Haskell (todd.haskell@wwu.edu) 
## 
## Use and distribution is governed by the terms of the 
## GNU General Public License. Certain portions of the 
## program may be subject to other licenses as well. See 
## the file LICENSE.TXT for details.
## 

MODULENAME=sounddriver

include ../Makefile.common

# OS-specific configuration
ifeq ($(FLXLABOS),linux)
	OBJECTS=flxalsa.o
     LIBFLAGS += -rdynamic -l$(GMODULE) -l$(GLIB) -ldl -lasound
else ifeq ($(FLXLABOS),windows)
	OBJECTS=flxdirectsound.o
     LIBFLAGS += -lDsound
endif

include ../Makefile.modules



