Whamcloud - gitweb
- put the exit(1)s back in after MPI_Abort() in the hopes that MPI
[fs/lustre-release.git] / lustre / portals / portals / Makefile.am
1 # Copyright (C) 2002  Cluster File Systems, Inc.
2 #
3 # This code is issued under the GNU General Public License.
4 # See the file COPYING in this distribution
5
6 DEFS =
7
8 my_sources = api-eq.c api-init.c api-me.c api-errno.c api-ni.c api-wrap.c \
9                 lib-dispatch.c lib-init.c lib-me.c lib-msg.c lib-eq.c \
10                 lib-md.c lib-move.c lib-ni.c lib-pid.c
11
12 noinst_LIBRARIES= libportals.a
13 libportals_a_SOURCES= $(my_sources)
14
15 if LIBLUSTRE
16 libportals_a_CFLAGS= -fPIC
17 else
18
19 MODULE = portals
20 modulenet_DATA = portals.o
21 EXTRA_PROGRAMS = portals
22
23 DISTCLEANFILES = *.orig *.rej
24
25 portals_SOURCES= module.c $(my_sources)
26
27 # Don't distribute any patched files.
28 dist-hook:
29         list='$(EXT2C)'; for f in $$list; do rm -f $(distdir)/$$f; done
30
31 include ../Rules.linux
32 endif