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

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