#
# Makefile for calling Makefile of tutorial-game, copyright (C) 2000-2007 Kurt Nienhaus
#


all:
	cd src && $(MAKE) all
	cp src/game_master src/game_client .

clean:
	rm -f game_master game_client
	cd src && $(MAKE) clean
	rm -f share/.vgag2.rc

