# makefile for agentland.behavior

default: all

JAVA_COMPILER = javac
#JAVA_COMPILER = javac -deprecation

JAVA_PACKAGE = agentland.behavior
JAVA_PACKAGE_DIRECTORY = agentland/behavior

# Fill this in with the directories that must be made _before_
# this directory (i.e., because of a code dependency).
# PREDIRS = dir1 dir2 dir3
# PREDIRS = 

# Fill this in with the subdirectories that you would like made
# when you do a make in this directory
# SUBDIRS = dir1 dir2 dir3
SUBDIRS = behaviors

HOME_MAKE_DIR = /home/hci/lite/lib/make/

WRITE_CLASS_FILES_TO = $(HOME)/hal/classes

CLASSDIR = $(WRITE_CLASS_FILES_TO)/$(JAVA_PACKAGE_DIRECTORY)

-include .dependencies

include $(HOME_MAKE_DIR)make.rules
