#******************************************************************************
#*									      *
#*	(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	= -I../include
CFLAGS  := $(CFLAGS) $(Cflags)

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:
	echo >.depend~
	for i in $C;do $(CC) $(CFLAGS) -M $$i ;done>>.depend~
	mv .depend~ .depend
.depend:
	touch .depend
include .depend
