File: Makefile.am

package info (click to toggle)
lam 7.1.2-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 54,668 kB
  • ctags: 17,034
  • sloc: ansic: 156,264; sh: 9,976; cpp: 7,699; makefile: 5,590; perl: 476; fortran: 260; asm: 83
file content (51 lines) | stat: -rw-r--r-- 1,671 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# -*- makefile -*-
#
# Copyright (c) 2001-2002 The Trustees of Indiana University.  
#                         All rights reserved.
# Copyright (c) 1998-2001 University of Notre Dame. 
#                         All rights reserved.
# Copyright (c) 1994-1998 The Ohio State University.  
#                         All rights reserved.
# 
# This file is part of the LAM/MPI software package.  For license
# information, see the LICENSE file in the top level directory of the
# LAM/MPI source distribution.
#
# $Id: Makefile.am,v 1.19 2003/11/15 13:11:18 jsquyres Exp $
#

include $(top_srcdir)/config/Makefile.options

# Do some conditionals to see if we want to install the full set of
# Trillium binary files.  This is not required for correct MPI
# functionality -- it is only required for developers who want to use
# the underlying Trillium interface.  We do the conditional here
# rather than in the upper level file so that targets like clean,
# distclean, and dist still come through here, regardless of the
# current ./configure options.

# Have to do some weirdness to ensure that we get everything -- a
# double redirection on $(prog) (which gets loaded into
# $(bin_PROGRAMS), but we have to supply the sources in EXTRA_DIST and
# a special rule for clean-local.

lam_target		= ipcdr

if WANT_TRILLIUM_INSTALL
lam_prog		= $(lam_target)
else
lam_prog		=
endif

liblam			= $(top_builddir)/share/liblam/liblam.la
libs			= $(liblam)

bin_PROGRAMS		= $(lam_prog)
ipcdr_SOURCES		= ipcdr.c
ipcdr_LDADD		= $(libs) $(LIBLAM_EXTRA_LIBS)
ipcdr_LDFLAGS		= $(LIBLAM_EXTRA_LDFLAGS)
ipcdr_DEPENDENCIES	= $(libs)

CLEANFILES		= *~ $(lam_target)

EXTRA_DIST		= $(ipcdr_SOURCES)