##############################################################################
# <! Copyright 1999, Institute for Complex Engineered Sytems,	
#                    Carnegie Mellon University	
#
# PROJECT: Adaptable 
#
# FILE: adaptable/adaptive/agents/Makefile 
# >
#
# Main agents makefile. Add targets here when creating new directories
# 
# @author Theodore Q Pham <A HREF="mailto:telamon@CMU.EDU">telamon@CMU.EDU</A>
#         <br> </br>
#
# @version  1.00 3/4/99<br> </br>
#
# <!
# REVISION HISTORY:
#
# $Log: Makefile,v $
# >
##############################################################################
.PHONY: all clean agents 
#test 
#Let jikes decide whether they need to be updated or not

TARGETS	= agents 


#JC	:= jikes +F
JC	:= javac    #-depend

all:	$(TARGETS)

agents: 
	$(JC) *.java

clean:
	rm -f *.class
	rm -f *~

