-
Notifications
You must be signed in to change notification settings - Fork 3
/
Makefile.am
54 lines (44 loc) · 1.12 KB
/
Makefile.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
49
50
51
52
53
54
ACLOCAL_AMFLAGS = -I m4
AM_CPPFLAGS = -I$(top_srcdir)/include
MAINTAINERCLEANFILES = \
Makefile.in
lib_LTLIBRARIES = libkern.la
libkern_la_SOURCES = \
lib/bitmap.c \
lib/bitops.c \
lib/rbtree.c
libkern_la_LDFLAGS = -version-info 0:0:0
pkginclude_HEADERS = \
include/atomic.h \
include/bitmap.h \
include/bitops.h \
include/common.h \
include/compiler.h \
include/hash.h \
include/hlist.h \
include/htable.h \
include/jhash.h \
include/kernel.h \
include/lheap.h \
include/list.h \
include/log2.h \
include/rbtree.h \
include/vec.h
pkgconfig_DATA = libkern.pc
pkgconfigdir = $(libdir)/pkgconfig
include aminclude.am
TESTS =
TESTS_ENVIRONMENT = \
TEST_SOURCE_DIR=$(srcdir)/tests \
TEST_BUILD_DIR=$(top_builddir)/tests
check_PROGRAMS =
check_SCRIPTS =
unit_test_CPPFLAGS = -I$(top_srcdir)/tests -DUNIT_TESTING=1
TESTS += tests/list_test
check_PROGRAMS += tests/list_test
tests_list_test_SOURCES = tests/list_test.c
tests_list_test_CPPFLAGS = $(unit_test_CPPFLAGS)
tests_list_test_LDADD = $(top_builddir)/libkern.la
libtool: $(LIBTOOL_DEPS)
$(SHELL) ./config.status --recheck
EXTRA_DIST = autogen.sh libtool $(SCRIPTS)