2004-01-08 00:39:46 +03:00
|
|
|
# -*- makefile -*-
|
|
|
|
#
|
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(top_srcdir)/config/Makefile.options
|
|
|
|
|
2004-01-08 16:41:20 +03:00
|
|
|
AM_CPPFLAGS = -DLAM_PROFILING_DEFINES=1
|
2004-01-08 00:39:46 +03:00
|
|
|
|
|
|
|
noinst_LTLIBRARIES = libmpi_f77_profile.la
|
|
|
|
|
2004-01-09 11:30:19 +03:00
|
|
|
noinst_HEADERS = defines.h
|
|
|
|
|
2004-01-08 00:39:46 +03:00
|
|
|
nodist_libmpi_f77_profile_la_SOURCES= \
|
2004-01-08 05:30:43 +03:00
|
|
|
pcomm_get_name_f.c \
|
|
|
|
pcomm_set_name_f.c \
|
2004-01-09 11:30:19 +03:00
|
|
|
pinit_f.c \
|
|
|
|
pfinalize_f.c
|
2004-01-08 00:39:46 +03:00
|
|
|
|
|
|
|
# Sym link in the sources from the real MPI directory
|
|
|
|
|
|
|
|
$(nodist_libmpi_f77_profile_la_SOURCES):
|
|
|
|
if test ! -r $@ ; then \
|
|
|
|
pname=`echo $@ | cut -b '2-'` ; \
|
|
|
|
ln -s $(top_srcdir)/src/mpi/f77/$$pname $@ ; \
|
|
|
|
fi
|
|
|
|
|
|
|
|
# These files were created by targets above
|
|
|
|
|
|
|
|
MAINTAINERCLEANFILES = $(nodist_libmpi_f77_profile_la_SOURCES)
|
|
|
|
|
|
|
|
# Don't want these targets in here
|
|
|
|
|
|
|
|
tags-recursive:
|
|
|
|
tags:
|
|
|
|
TAGS:
|
|
|
|
GTAGS:
|
|
|
|
ID:
|