hc
2024-11-01 2f529f9b558ca1c1bd74be7437a84e4711743404
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
49
50
51
52
53
lib_LTLIBRARIES = libalchemy@CORE@.la
 
libalchemy@CORE@_la_LDFLAGS = @XENO_LIB_LDFLAGS@ -version-info 0:0:0
 
libalchemy@CORE@_la_LIBADD =                        \
   @XENO_CORE_LDADD@                    \
   $(top_builddir)/lib/copperplate/libcopperplate@CORE@.la
 
libalchemy@CORE@_la_SOURCES =    \
   init.c        \
   internal.c    \
   internal.h    \
   reference.h    \
   alarm.c        \
   alarm.h        \
   buffer.c    \
   buffer.h    \
   cond.c        \
   cond.h        \
   event.c        \
   event.h        \
   heap.c        \
   heap.h        \
   mutex.c        \
   mutex.h        \
   queue.c        \
   queue.h        \
   task.c        \
   task.h        \
   sem.c        \
   sem.h        \
   timer.c        \
   timer.h
 
if XENO_COBALT
libalchemy@CORE@_la_SOURCES +=    \
   pipe.c            \
   pipe.h
endif
 
libalchemy@CORE@_la_CPPFLAGS =                \
   @XENO_USER_CFLAGS@                \
   -I$(top_srcdir)/include                \
   -I$(top_srcdir)/lib
 
EXTRA_DIST = testsuite
 
SPARSE = sparse
 
sparse:
   @for i in $(libalchemy@CORE@_la_SOURCES); do \
       $(SPARSE) $(CHECKFLAGS) $(srcdir)/$$i; \
   done