summaryrefslogtreecommitdiffstats
path: root/cpukit/libstdthreads/Makefile.am
blob: b6b9138063d736dab99311fe2730bbc641fe39ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
include $(top_srcdir)/automake/compile.am

include_HEADERS =

noinst_LIBRARIES = libstdthreads.a

libstdthreads_a_CFLAGS = -std=c11
libstdthreads_a_CPPFLAGS = $(AM_CPPFLAGS)

libstdthreads_a_SOURCES =
libstdthreads_a_SOURCES += call_once.c
libstdthreads_a_SOURCES += cnd.c
libstdthreads_a_SOURCES += mtx.c
if HAS_PTHREADS
libstdthreads_a_SOURCES += thrd.c
endif
libstdthreads_a_SOURCES += tss.c

include $(top_srcdir)/automake/local.am