blob: b9975d1866b7b2dde78906da6616f00cd0c37cbe (
plain)
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
#DEBUG_FLAGS=@DEBUG_VAR@
TRACE_LEVEL=@TRACE_VAR@
DOXYGEN = @DOXYGEN@
topdir=$(srcdir)/..
AM_CFLAGS =
if HAVE_GCC
AM_CFLAGS += \
-Wall -Wshadow -Wstrict-prototypes -Wpointer-arith -Wcast-qual \
-Wcast-align -Wwrite-strings
endif
AM_CPPFLAGS = -I$(topdir) -I$(topdir)/trace $(TRACE_LEVEL)
ACLOCAL_AMFLAGS = -I m4
# Set up the pkg-config file
pkgconfigdir = $(libdir)/pkgconfig
dist_pkgconfig_DATA = collection.pc
dist_include_HEADERS = \
collection.h \
collection_tools.h \
collection_queue.h \
collection_stack.h
dist_noinst_DATA = m4
# Build library
lib_LTLIBRARIES = libcollection.la
libcollection_la_SOURCES = \
collection.c \
collection_tools.c \
collection_cnv.c \
collection_queue.c \
collection_stack.c \
collection_cmp.c \
collection_iter.c \
collection_priv.h \
../trace/trace.h
libcollection_la_LDFLAGS = \
-version-info 1:0:0
# Build unit test
check_PROGRAMS = collection_ut collection_stack_ut collection_queue_ut
collection_ut_SOURCES = collection_ut.c
collection_ut_LDADD = libcollection.la
collection_stack_ut_SOURCES = collection_stack_ut.c
collection_stack_ut_LDADD = libcollection.la
collection_queue_ut_SOURCES = collection_queue_ut.c
collection_queue_ut_LDADD = libcollection.la
if HAVE_DOXYGEN
docs:
# A temp way of building docs until we hook into the package build
rm -fR doc
mkdir -p doc
$(DOXYGEN) collection.cfg.doxy
else
docs:
@echo "Doxygen not installed, cannot generate documentation"
@exit 1
endif
TESTS = collection_ut collection_stack_ut collection_queue_ut
tests: all $(check_PROGRAMS)
clean-local:
rm -Rf doc
|