# template Makefile for a trivial Swarm application. Copy and modify.
#   SWARMHOME points to the Swarm directory root
#   APPLICATION is the name of your program
#   OBJECTS are the .o files needed to link your program
#   APPLIBS are extra libs you need to link (-lspace, for instance)
# Then include Makefile.appl, and you're set!
# you should also write dependencies for each of your .o files to ensure
#   correct compilation.

SWARMHOME=/usr/src/swarm/swarm
APPLICATION=sss
OBJECTS=main.o SugarAgent.o SugarSpace.o ModelSwarm.o ObserverSwarm.o Shuffler.o
APPLIBS=-lspace

include $(SWARMHOME)/Makefile.appl
