-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
37 lines (32 loc) · 996 Bytes
/
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
lib_LTLIBRARIES = lib/libtci.la
lib_libtci_la_SOURCES = tci/barrier.c \
tci/context.c \
tci/mutex.c \
tci/parallel.c \
tci/slot.c \
tci/work_item.c
if CPLUSPLUS
lib_libtci_la_SOURCES += tci/communicator_cpp.cxx \
tci/task_set_cpp.cxx
else
lib_libtci_la_SOURCES += tci/communicator.c \
tci/task_set.c
endif
nobase_include_HEADERS = tci.h \
tci/tci_config.h \
tci/tci_global.h \
tci/barrier.h \
tci/communicator.h \
tci/context.h \
tci/mutex.h \
tci/parallel.h \
tci/pipeline.h \
tci/slot.h \
tci/task_set.h \
tci/work_item.h \
tci/yield.h
%_cpp.cxx: %.c
@cp $< $@
VPATH += $(srcdir)
AM_CPPFLAGS = -I$(srcdir) -I$(srcdir)/tci -I. -Itci
ACLOCAL_AMFLAGS = -I m4