##################################################################
# gmake-file for the "rob_example"-application
#
# NOTE
# Use "gmake" to compile the example and "gmake clean" for cleanup.
# Be sure that librob_mobs.a is installed in ../lib.$(HOSTTYPE)!

CC=gcc
CFLAGS=-ansi

CPPFLAGS = -I$(MOBS_HOME)/include -I$(PVM_ROOT)/include
LDFLAGS  = -L$(MOBS_HOME)/lib.$(HOSTTYPE) -L$(PVM_ROOT)/lib/$(PVM_ARCH)
LDLIBS   = -lrob_mobs -lpvm3

all:: rob_example

clean::
	-$(RM) rob_example.o rob_example core a.out

rob_example.o: rob_example.c
rob_example: rob_example.o
