#
# Makefile for rsr_with_reply_server and rsr_with_reply_client example programs.
#
# CVS Information: 
#    $Source: /home/globdev/CVS/globus-current/Globus/Examples/nexus_rsr_with_reply/Makefile,v $
#    $Date: 1999/03/02 00:37:35 $
#    $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_NEXUS_LIBS) $(LDFLAGS) $(LIBS) 

all:	rsr_with_reply_server rsr_with_reply_client

rsr_with_reply_server: 
	$(PURIFY) $(LD) $(MY_CFLAGS) -o rsr_with_reply_server rsr_with_reply_server.c $(MY_LDFLAGS) 

rsr_with_reply_client: 
	$(PURIFY) $(LD) $(MY_CFLAGS) -o rsr_with_reply_client rsr_with_reply_client.c $(MY_LDFLAGS) 

clean:
	$(RM) -rf *.o  rsr_with_reply_server rsr_with_reply_client
