3992c9582a
This commit was SVN r863.
19 строки
352 B
Makefile
19 строки
352 B
Makefile
# -*- makefile -*-
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
include $(top_srcdir)/config/Makefile.options
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/test/support -DLAM_ENABLE_DEBUG_OVERRIDE=1
|
|
AM_LDFLAGS = -lpthread
|
|
|
|
noinst_PROGRAMS = chello
|
|
|
|
chello_SOURCES = chello.c
|
|
chello_LDADD = \
|
|
$(top_builddir)/src/libmpi.la \
|
|
$(top_builddir)/src/liblam.la
|
|
chello_DEPENDENCIES = $(chello_LDADD)
|
|
|