#******************************************************************************
#*									      *
#*	(C) 1993 by K. Ballueder					      *
#*									      *
#*	See README and COPYING for details.				      *
#*									      *
#*	Please feel free to contact me:					      *
#*		kballued@charon.physik.uni-osnabrueck.de		      *
#*		kballued@jupiter.rz.uni-osnabrueck.de			      *
#*									      *
#*******************************************************************************
#
#	Makefile for Bdash
#
include ../Makeopts

CFLAGS	:= $(CFLAGS) -I../include

H	= sound_linux.h sound_dos.h
C	= sound.c sound_linux.c	sound_dos.c
O	= sound.o sound_linux.o

sound.a:	$O
		ar rcs $@ $O
clean:	
		rm -f *.a $O

depend dep:
	touch .depend
	for i in $C;do $(CC) $(Cflags) -M $$i ;done>>.depend~
	mv .depend~ .depend

include .depend
