#----------------------------------------------------------------------------
# Makefile -> ${ROOT}/src/... .../Makefile
#
# Makefiles for managing a Java project consisting of multiple packages.
# (see ${ROOT}/etc/Makefile.README)
# Daishi Harada (daishi@cs.berkeley.edu)
#----------------------------------------------------------------------------

#----------------------------------------------------------------------------
# BEGIN: User Definitions

# Package name.
#	E.g. PACKAGE = aima
PACKAGE = aima.examples

# The source .java files in this package.
#	E.g. JAVA_FILES = Foo.java Bar.java
JAVA_FILES = OurButton.java RiskNoRiskGame.java \
	TestSearch.java TwoThreeState.java MCState.java

# Classes which are JavaBeans.
#	E.g. JAVABEANS = Foo
JAVABEANS = RiskNoRiskGame

# Subpackages to this package.
# Should only be the suffix to this package
# (i.e., should be the names of the subdirectories)
#	E.g. SUBPACKAGES = stat math example
SUBPACKAGES =

# END: User Definitions
#----------------------------------------------------------------------------

SRC_ROOT = ${shell pwd}/${shell echo ${PACKAGE} | sed -e "s/\./\//g" -e "s/[[:alnum:]]\+/../g"}
ROOT = ${SRC_ROOT}/..

include ${ROOT}/include/Defs.mk
include ${ROOT}/include/Rules.mk