# 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.


ifeq ($(SWARMHOME),)
SWARMHOME=../../swarm
endif
APPLICATION= viewer
OBJECTS=main.o ViewerSwarm.o
APPLIBS=-lspace
include $(SWARMHOME)/etc/swarm/Makefile.appl

#main.o: main.m ViewerSwarm.h 
#ViewerSwarm.o: ViewerSwarm.h ViewerSwarm.m 


