blob: ee5f120d3f5d4656d3d49ef8daa7152e33da87c0 (
plain) (
blame)
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
|
include $(top_srcdir)/Makefile.am.common
if do_roken_rename
ES = base64.c
endif
IMPLEMENT_TLS=
if MAINTAINER_MODE
IMPLEMENT_TLS += dll.c
AM_CPPFLAGS += -DHEIM_BASE_MAINTAINER
endif
AM_CPPFLAGS += $(ROKEN_RENAME)
lib_LTLIBRARIES = libheimbase.la
check_PROGRAMS = test_base
libheimbase_la_LDFLAGS = -version-info 1:0:0
TESTS = test_base
if versionscript
libheimbase_la_LDFLAGS += $(LDFLAGS_VERSION_SCRIPT)$(srcdir)/version-script.map
endif
libheimbase_la_LIBADD = $(PTHREAD_LIBADD)
include_HEADERS = heimbase.h
dist_libheimbase_la_SOURCES = \
array.c \
baselocl.h \
bsearch.c \
bool.c \
data.c \
db.c \
dict.c \
$(IMPLEMENT_TLS) \
error.c \
heimbase.c \
heimbasepriv.h \
heimqueue.h \
json.c \
null.c \
number.c \
roken_rename.h \
string.c
nodist_libheimbase_la_SOURCES = $(ES)
# install these?
libheimbase_la_DEPENDENCIES = version-script.map
test_base_LDADD = libheimbase.la $(LIB_roken)
CLEANFILES = base64.c test_db.json
EXTRA_DIST = NTMakefile version-script.map
base64.c:
rm -f base64.c
$(LN_S) $(srcdir)/../roken/base64.c .
|