-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile.am
113 lines (98 loc) · 2.82 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
# This file is part of memstomp.
#
# Copyright 2009 Lennart Poettering
# Copyright 2011 Red Hat
#
# memstomp is free software: you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# memstomp is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with memstomp. If not, see <http://www.gnu.org/licenses/>.
EXTRA_DIST = \
bootstrap.sh \
GPL2 \
LGPL3 \
GPL3 \
README \
memstomp.in
#include_HEADERS = \
# memstomp.h
lib_LTLIBRARIES = \
libmemstomp.la \
libmemstomp-backtrace-symbols.la
bin_SCRIPTS = \
memstomp
man1_MANS = memstomp.man
CLEANFILES = \
memstomp
libmemstomp_la_SOURCES = \
memstomp.c
libmemstomp_la_LDFLAGS = \
-avoid-version \
-module \
-export-dynamic \
-shared \
-prefer-pic
libmemstomp_la_LIBADD = \
$(PTHREAD_LIBS) \
-lrt \
-ldl
libmemstomp_la_CFLAGS = \
$(PTHREAD_CFLAGS) \
-fno-tree-vrp \
-fno-delete-null-pointer-checks \
-DSONAME=\"libmemstomp.so\"
libmemstomp_backtrace_symbols_la_SOURCES = \
backtrace-symbols.c
libmemstomp_backtrace_symbols_la_LDFLAGS = \
-avoid-version \
-module \
-export-dynamic \
-shared \
-prefer-pic
libmemstomp_backtrace_symbols_la_LIBADD = \
$(PTHREAD_LIBS) \
-lrt \
-ldl
libmemstomp_backtrace_symbols_la_CFLAGS = \
$(PTHREAD_CFLAGS)
memstomp: memstomp.in Makefile
sed -e 's,@PACKAGE_STRING\@,$(PACKAGE_STRING),g' \
-e 's,@PACKAGE_NAME\@,$(PACKAGE_NAME),g' < $< > $@
chmod +x memstomp
install-exec-hook:
rm -f $(DESTDIR)$(libdir)/libmemstomp.la
rm -f $(DESTDIR)$(libdir)/libmemstomp-backtrace-symbols.la
uninstall-hook:
rm -f $(DESTDIR)$(libdir)/libmemstomp.so
rm -f $(DESTDIR)$(libdir)/libmemstomp-backtrace-symbols.so
dist-gzip:
cd $(srcdir); git status | grep working.directory.clean || (echo "You should commit your changes before 'make rpm'.")
(cd $(srcdir); git archive --prefix=memstomp-$(VERSION)/ --format=tar HEAD) | gzip > memstomp-$(VERSION).tar.gz
ACLOCAL_AMFLAGS = -I m4
check-DEJAGNU: site.exp
if [ -d testsuite ]; then \
true; \
else \
mkdir testsuite; \
fi
rm -f testsuite/site.exp
cp site.exp testsuite/site.exp
rootme=`pwd`; export rootme; \
srcdir=`cd ${srcdir}; pwd` ; export srcdir ; \
LC_ALL=C; export LC_ALL; \
EXPECT=${EXPECT} ; export EXPECT ; \
runtest=$(RUNTEST); \
cd testsuite; \
if $(SHELL) -c "$$runtest --version" > /dev/null 2>&1; then \
$$runtest --tool $(DEJATOOL) --srcdir $${srcdir}/testsuite \
$(RUNTESTFLAGS); \
else echo "WARNING: could not find \`runtest'" 1>&2; :;\
fi