# Makefile for games_libs/audio
# $Id: Makefile 840 2009-05-10 02:25:32Z satofumi $

# Compile options
CC = $(CXX)
CXXFLAGS = -g -O0 -Wall -W -Werror $(INCLUDES)
INCLUDES =

all :
	cd open_al/ && $(MAKE)
	cd sdl_mixer/ && $(MAKE)

clean :
	$(RM) *.o $(TARGET)
	cd open_al/ && $(MAKE) clean
	cd sdl_mixer/ && $(MAKE) clean

depend :
	makedepend -Y -- $(INCLUDES) -- $(wildcard *.h *.cpp)

.PHONY : all clean depend
######################################################################

# DO NOT DELETE
