#
# Copyright (C) 2009 TSUBAKIMOTO Hiroya <zorac@4000do.co.jp>
#
# This software comes with ABSOLUTELY NO WARRANTY; for details of
# the license terms, see the LICENSE.txt file included with the program.
#
NAME = befoo
SRCDIR = src

all:
	${MAKE} -C ${SRCDIR}
	mv ${SRCDIR}/${NAME}.exe .

clean:
	${MAKE} -C ${SRCDIR} clean
