-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.am
80 lines (65 loc) · 1.69 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
NULL =
AM_CFLAGS = @AM_CFLAGS@
SUBDIRS = data
DIST_SUBDIRS = $(SUBDIRS) tests
lib_LTLIBRARIES = \
libtndb.la \
$(NULL)
libtndb_la_SOURCES = \
compiler.h \
read.c \
tndb.c \
tndb_int.h \
write.c \
$(NULL)
libtndb_la_LDFLAGS = \
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
$(NULL)
libtndb_includedir = $(includedir)/tndb
libtndb_include_HEADERS = \
tndb.h \
$(NULL)
noinst_PROGRAMS = \
test_tndb \
tndb_dump \
$(NULL)
test_tndb_LDADD = \
libtndb.la \
$(NULL)
tndb_dump_LDADD = \
libtndb.la \
$(NULL)
MAINTAINERCLEANFILES = \
aclocal.m4 \
config.guess \
config.h* \
config.log \
config.s* \
configure \
depcomp \
install-sh \
libtool \
ltconfig \
ltmain.sh \
mkinstalldirs \
missing \
stamp-h* \
`find "$(srcdir)" -type f -name Makefile -print` \
`find "$(srcdir)" -type f -name Makefile.in -print`
DISTCLEANFILES = TAGS gmon.out $(distdir)/.deps libtndb.a tndb-*.tar.*
CLEANFILES = $(EXTRA_PROGRAMS) core *.o *.bak *~ *% *\# \#*
all-local:
@ln -sf .libs/libtndb.a libtndb.a
dist-hook:
@if test -d "$(srcdir)/.git"; then \
echo "Creating ChangeLog" && \
( cd "$(top_srcdir)" && \
echo "# Generated by Makefile. Do not edit."; echo; \
$(top_srcdir)/missing --run git log --stat ) > ChangeLog.tmp \
&& mv -f ChangeLog.tmp $(top_distdir)/ChangeLog \
|| ( rm -f ChangeLog.tmp ; \
echo "Failed to generate ChangeLog" >&2 ); \
else \
echo "A git clone is required to generate ChangeLog" >&2; \
fi
-include $(top_srcdir)/Makefile.extra