-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.am
42 lines (38 loc) · 1.7 KB
/
Makefile.am
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
####################
# Makefile for HPX #
####################
SUBDIRS = system util boot actions memory gas network scheduler process \
instrumentation percolation
# The main libhpx library
lib_LTLIBRARIES = libhpx.la
libhpx_la_CPPFLAGS = -I$(top_srcdir)/include $(LIBHPX_CPPFLAGS)
libhpx_la_CFLAGS = $(LIBHPX_CFLAGS)
libhpx_la_CXXFLAGS = $(LIBHPX_CXXFLAGS)
libhpx_la_SOURCES = libhpx.c hpx.c call.c par.c debug.c version.c
libhpx_la_LDFLAGS = $(LIBHPX_LDFLAGS)
libhpx_la_LIBADD = $(LIBHPX_LIBS) $(LIBHPX_LIBADD) \
$(top_builddir)/libsync/libsync.la \
system/libsystem.la \
util/libutil.la \
boot/libboot.la \
actions/libactions.la \
memory/libmemory.la \
gas/libgas.la \
network/libnetwork.la \
scheduler/libscheduler.la \
process/libprocess.la \
instrumentation/libinstrumentation.la \
percolation/libpercolation.la
libhpx_la_DEPENDENCIES = $(LIBHPX_LIBADD) \
$(top_builddir)/libsync/libsync.la \
system/libsystem.la \
util/libutil.la \
boot/libboot.la \
actions/libactions.la \
memory/libmemory.la \
gas/libgas.la \
network/libnetwork.la \
scheduler/libscheduler.la \
process/libprocess.la \
instrumentation/libinstrumentation.la \
percolation/libpercolation.la