#
# Makefile for nexus_myjob_ring example program.
#
# CVS Information: 
#    $Source: /home/globdev/CVS/globus-current/Globus/Examples/nexus_myjob_ring/Makefile,v $
#    $Date: 1999/03/02 00:37:34 $
#    $Revision: 1.9 $
#    $Author: augart $


##############################################################################
# GLOBUS_DIR is the only variable that has to change.
#
#     Modify GLOBUS_DIR to specify your globus installation directory and
#     the globus "flavor:

GLOBUS_DIR = /usr/local/globus/install/development/mips-sgi-irix6.5-64_nothreads_standard_debug/

#
# The rest of the file should not change.
#
##############################################################################

include $(GLOBUS_DIR)/etc/makefile_header

MY_CFLAGS = -I$(includedir) $(CFLAGS)
MY_LDFLAGS = -L$(libdir) $(GLOBUS_GRAM_MYJOB_LIBS) $(GLOBUS_DUCT_RUNTIME_LIBS) $(GLOBUS_GASS_FILE_LIBS)  $(LDFLAGS) $(LIBS) 

nexus_myjob_ring:	nexus_myjob_ring.o
	$(PURIFY) $(LD) -o nexus_myjob_ring nexus_myjob_ring.o $(MY_LDFLAGS)

nexus_myjob_ring.o:	nexus_myjob_ring.c
	$(CC) $(MY_CFLAGS) -c nexus_myjob_ring.c

clean:
	rm -f *.o nexus_myjob_ring

