-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile_scc.am
48 lines (40 loc) · 1.21 KB
/
Makefile_scc.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
43
44
45
46
47
48
lib_LTLIBRARIES = liblpel_mon.la liblpel_hrc.la
liblpel_hrc_la_SOURCES = \
src/streamset.c \
src/timing.c \
src/lpelcfg.c \
src/lpel_main.c \
src/lpel_hwloc.c \
src/sched/hierarchy/hrc_task.c \
src/sched/hierarchy/hrc_task.h \
src/sched/hierarchy/scc/scc_worker_init.c \
src/sched/hierarchy/scc/scc_mailbox.c \
src/sched/hierarchy/hrc_worker_op.c \
src/sched/hierarchy/hrc_worker.h \
src/sched/hierarchy/hrc_taskqueue.c \
src/sched/hierarchy/hrc_taskqueue.h \
src/sched/hierarchy/taskpriority.h \
src/sched/hierarchy/taskpriority.c \
src/sched/hierarchy/hrc_stream.c \
src/sched/hierarchy/hrc_stream.h \
src/sched/hierarchy/hrc_buffer.c \
src/sched/hierarchy/hrc_buffer.h
liblpel_hrc_la_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/src/include
liblpel_mon_la_SOURCES = \
modimpl/monitoring.c \
modimpl/monitoring.h
liblpel_mon_la_CPPFLAGS = -I$(top_srcdir)/include
if USE_MCTX_PCL
liblpel_hrc_la_LIBADD = $(LIBPCL_LA)
liblpel_hrc_la_CPPFLAGS += -DUSE_MTX_PCL
endif
if USE_MCTX_X86
liblpel_hrc_la_SOURCES += src/ctx/ctx_i386.S
endif
if USE_MCTX_X86_64
liblpel_hrc_la_SOURCES += src/ctx/ctx_amd64.S
endif
if USE_MCTX_X86_64_MEM
liblpel_hrc_la_SOURCES += src/ctx/ctx_amd64-mem.S
endif
ACLOCAL_AMFLAGS = -I m4