2004-11-22 03:37:56 +03:00
|
|
|
#
|
2005-11-05 22:57:48 +03:00
|
|
|
# Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
|
|
# University Research and Technology
|
|
|
|
# Corporation. All rights reserved.
|
|
|
|
# Copyright (c) 2004-2005 The University of Tennessee and The University
|
|
|
|
# of Tennessee Research Foundation. All rights
|
|
|
|
# reserved.
|
2004-11-28 23:09:25 +03:00
|
|
|
# Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
# University of Stuttgart. All rights reserved.
|
2005-03-24 15:43:37 +03:00
|
|
|
# Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
# All rights reserved.
|
2004-11-22 04:38:40 +03:00
|
|
|
# $COPYRIGHT$
|
|
|
|
#
|
|
|
|
# Additional copyrights may follow
|
|
|
|
#
|
2004-11-22 03:37:56 +03:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
2005-09-07 09:54:53 +04:00
|
|
|
|
2004-02-12 18:55:09 +03:00
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
# OMPI Get the dirs where ompi_config.h and ompi_config_bottom.h live.
|
2004-03-17 06:58:21 +03:00
|
|
|
# Also specify where we can find this package's config.h because some
|
2004-06-07 19:33:53 +04:00
|
|
|
# of the header files in this directory get included elsewhere in OMPI.
|
2004-03-17 06:58:21 +03:00
|
|
|
# #@%@#$...
|
|
|
|
AM_CPPFLAGS = \
|
2005-07-02 18:08:19 +04:00
|
|
|
-I$(top_srcdir)/opal/event/compat
|
2004-03-17 06:58:21 +03:00
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
# OMPI: No need to build the sample or test
|
2004-02-12 21:54:06 +03:00
|
|
|
#SUBDIRS = . sample test
|
2004-03-18 01:17:06 +03:00
|
|
|
SUBDIRS = compat
|
2004-02-12 18:55:09 +03:00
|
|
|
|
2004-03-18 01:17:06 +03:00
|
|
|
EXTRA_DIST = err.c event.h evsignal.h event.3 kqueue.c \
|
2005-02-25 23:29:36 +03:00
|
|
|
epoll_sub.c epoll.c select.c rtsig.c poll.c signal.c \
|
|
|
|
WIN32-Code/config.h WIN32-Code/misc.c \
|
|
|
|
WIN32-Code/misc.h WIN32-Code/win32.c
|
2004-03-18 01:17:06 +03:00
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
# OMPI: This causes problems
|
2004-04-28 05:28:24 +04:00
|
|
|
junk = \
|
2004-02-12 18:55:09 +03:00
|
|
|
sample/Makefile.am sample/Makefile.in sample/event-test.c \
|
|
|
|
sample/signal-test.c sample/time-test.c \
|
|
|
|
test/Makefile.am test/Makefile.in test/bench.c test/regress.c \
|
|
|
|
test/test-eof.c test/test-weof.c test/test-time.c \
|
|
|
|
test/test-init.c test/test.sh \
|
|
|
|
compat/err.h compat/sys/queue.h compat/sys/tree.h compat/sys/_time.h \
|
|
|
|
WIN32-Code WIN32-Code/config.h WIN32-Code/misc.c \
|
|
|
|
WIN32-Code/win32.c WIN32-Code/misc.h \
|
|
|
|
WIN32-Prj WIN32-Prj/event_test WIN32-Prj/event_test/event_test.dsp \
|
|
|
|
WIN32-Prj/event_test/test.txt WIN32-Prj/libevent.dsp \
|
|
|
|
WIN32-Prj/libevent.dsw WIN32-Prj/signal_test \
|
|
|
|
WIN32-Prj/signal_test/signal_test.dsp WIN32-Prj/time_test \
|
|
|
|
WIN32-Prj/time_test/time_test.dsp
|
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
# OMPI: Changed to noinst and libevent.la
|
2004-02-13 16:36:41 +03:00
|
|
|
noinst_LTLIBRARIES = libevent.la
|
2004-02-12 18:55:09 +03:00
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
# OMPI: Automake sillyness so that we can have variable sources
|
|
|
|
objects = $(OMPI_LIBEVENT_SOURCES:.c=.lo)
|
2004-02-12 23:39:25 +03:00
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
# OMPI: Changed to libevent_la_*
|
2004-11-18 06:53:42 +03:00
|
|
|
headers = event.h
|
|
|
|
|
|
|
|
libevent_la_SOURCES = event.c $(headers)
|
2004-03-18 00:11:52 +03:00
|
|
|
libevent_la_LIBADD = $(objects)
|
|
|
|
libevent_la_DEPENDENCIES = $(objects)
|
2004-11-18 06:53:42 +03:00
|
|
|
|
|
|
|
|
|
|
|
if WANT_INSTALL_HEADERS
|
2005-07-02 18:08:19 +04:00
|
|
|
ompidir = $(includedir)/openmpi/opal/event
|
2004-11-18 06:53:42 +03:00
|
|
|
ompi_HEADERS = $(headers)
|
|
|
|
else
|
|
|
|
ompidir = $(includedir)
|
|
|
|
endif
|