#  (C) 1993 by Argonne National Laboratory and Mississipi State University.
#      All rights reserved.  See COPYRIGHT in top-level directory.
#

##### User configurable options #####

top_srcdir           = /proj/tpfimos/larour/Libraries/linux/mpich2-1.0.2p1/src/mpe2/src/wrappers

CC                   = gcc
CC_SHL               = @CC_SHL@
CLINKER              = gcc
MPI_CC               = /proj/tpfimos/larour/Libraries/linux/mpich2-1.0.2p1/bin/mpicc
MPI_CLINKER          = $(MPI_CC)
AR                   = ar
ARFLAGS              = cr
RANLIB               = ranlib
MAKE                 = make --no-print-directory
MPI_INC              = 
MPI_LIBS             = 
INCLUDE_DIR          = -I.. -I${top_srcdir}/include \
                       -I${includebuild_dir} \
                       -I../../.. -I${top_srcdir}/../../include \
                       $(MPI_INC)
LOG_LIBNAME          = lmpe
TRACE_LIBNAME        = tmpe
F2CMPI_LIBNAME       = mpe_f2cmpi
CFLAGS               =  -DUSE_STDARG -DHAVE_PROTOTYPES
MPE_LIBDIR           = /proj/tpfimos/larour/Libraries/linux/mpich2-1.0.2p1/src/mpe2/lib
LIB_PATH             = $(MPI_LIBS)
LDFLAGS              = 
MPE_BUILD_FORTRAN2C  = yes

### End User configurable options ###
SHELL = /bin/sh
RM    = rm
CP    = cp

VPATH=.:$(srcdir)

# Installation directories
prefix           = /proj/tpfimos/larour/Libraries/linux/mpich2-gnu/
exec_prefix      = ${prefix}
bindir           = ${exec_prefix}/bin
includedir       = ${prefix}/include
libdir           = ${exec_prefix}/lib
# Build directories
includebuild_dir = /proj/tpfimos/larour/Libraries/linux/mpich2-1.0.2p1/src/mpe2/include
libbuild_dir     = /proj/tpfimos/larour/Libraries/linux/mpich2-1.0.2p1/src/mpe2/lib
binbuild_dir     = /proj/tpfimos/larour/Libraries/linux/mpich2-1.0.2p1/src/mpe2/bin
srcdir           = /proj/tpfimos/larour/Libraries/linux/mpich2-1.0.2p1/src/mpe2/src/wrappers/src

EXECS            = 

# GETNAME_DEFS are needed by mpehname.c
CC_FLAGS         = $(CFLAGS) $(INCLUDE_DIR) $(MPE_COPTS)
CC_LDFLAGS       = $(LDFLAGS) $(CFLAGS) $(MPE_LDOPTS)

MPE_CSOURCES     =
MPE_COBJECTS     = $(MPE_CSOURCES:.c=.o)

MPE_WSOURCES     =
MPE_WOBJECTS     = $(MPE_WSOURCES:.c=.o)

MPE_SHLCOBJECTS  = $(MPE_COBJECTS:.o=.lo)
MPE_SHLWOBJECTS  = $(MPE_WOBJECTS:.o=.lo)

.SUFFIXES: .c .o .lo .a 

.c.o:
	$(MPI_CC) $(CC_FLAGS) -c $<

.c.a:
	$(MPI_CC) $(CC_FLAGS) -c $<

# Allow compilers that do not allow -o for renaming object files
.c.lo:
	$(CC_SHL) $(CC_FLAGS) -c $< $(INC_DIR)
	@mv $*.o $*.lo

# default_all is the same as default, but without the RANLIB.  This
# can speed up the build (ranlibs can take a LONG time).  profile_all 
# is the same, but for the profile library
# **** Currently the same as default for simplicity ****
default_all: default
profile_all: 

#
default: clean
	 $(MAKE) ${libbuild_dir}/lib$(LOG_LIBNAME).a
	 $(MAKE) ${libbuild_dir}/lib$(TRACE_LIBNAME).a
	@if [ "$(MPE_BUILD_FORTRAN2C)" = "yes" ] ; then \
	     $(MAKE) ${libbuild_dir}/lib$(F2CMPI_LIBNAME).a ; \
	 fi
	 $(MAKE) ${libbuild_dir}/mpe_prof.o

#
# It is tempting here to use ... libmpe.a($(MPE_OBJECTS)) as the dependency,
# but this would require that all makes properly handle library dependencies.
# Since makes that DO are the exception rather than the rule, we don't
# use this form
#
# We've also had trouble with this.  Sometimes, under Solaris, the 
# first file in the dependency is built but not included with $? 
# This is clearly a bug in the make, since the determination of dependencies
# is done once (e.g., a blip in the filesystem time can't be 
# responsible if make works as Sun documents it).  To fix this, we
# add all the objects to the library, not just the "recent" ones.
${libbuild_dir}/lib$(LOG_LIBNAME).a: log_mpi_core.o
	$(AR) $(ARFLAGS) $@ $?
	$(RANLIB) $@
#	-$(RM) -f $?

${libbuild_dir}/lib$(TRACE_LIBNAME).a: trace_mpi_core.o
	$(AR) $(ARFLAGS) $@ $?
	$(RANLIB) $@
#	-$(RM) -f $?

${libbuild_dir}/lib$(F2CMPI_LIBNAME).a: mpe_proff.o
	$(AR) $(ARFLAGS) $@ $?
	$(RANLIB) $@
#	-$(RM) -f $?

${libbuild_dir}/mpe_prof.o: mpe_prof.o
	@-if [ "${libbuild_dir}" != "." ] ; then \
	      $(CP) $? ${libbuild_dir} ; \
	  fi

#
# Remove the old libraries before rebuilding (in case they came from another
# architecture or are otherwise damaged)
rmlib:
	@-$(RM) -f ${libbuild_dir}/lib$(LOG_LIBNAME).a 
	@-$(RM) -f ${libbuild_dir}/lib$(TRACE_LIBNAME).a 
	@-$(RM) -f ${libbuild_dir}/lib$(F2CMPI_LIBNAME).a 
	@-$(RM) -f ${libbuild_dir}/mpe_prof.o

rmprog:
	@-$(RM) -f $(EXECS)

clean: rmprog
	@-$(RM) -f *.o ${srcdir}/*.o *~ $(EXECS) PI*

distclean: clean rmlib
	@-$(RM) -f Makefile
