all:
	(cd src ; make)

with_sound:
	(cd src ; make)
	(cd src_sound ; make)

clean:
	rm -f core
	(cd bin ; rm -f core)
	(cd src ; make clean)
	(cd src_sound ; make clean)

install:
	rm -f core
	(cd src ; make install) 
	(cd src_sound ; make install) 
