-
Notifications
You must be signed in to change notification settings - Fork 19
/
Makefile.am
106 lines (90 loc) · 1.54 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
SUBDIRS = \
sysdeps \
. \
testsuite
AM_CPPFLAGS += \
$(libelf_CFLAGS) \
-DSYSCONFDIR=\"$(sysconfdir)\"
noinst_LTLIBRARIES = \
libltrace.la
libltrace_la_SOURCES = \
breakpoints.c \
debug.c \
demangle.c \
dict.c \
display_args.c \
ltrace-elf.c \
execute_program.c \
handle_event.c \
libltrace.c \
options.c \
output.c \
proc.c \
read_config_file.c \
summary.c
libltrace_la_LIBADD = \
$(libelf_LIBS) \
$(liberty_LIBS) \
$(libsupcxx_LIBS) \
$(libunwind_LIBS) \
$(libunwind_ptrace_LIBS) \
$(libunwind_arch_LIBS) \
sysdeps/libos.la
bin_PROGRAMS = \
ltrace
ltrace_SOURCES = \
main.c
ltrace_LDADD = \
libltrace.la
noinst_HEADERS = \
common.h \
debug.h \
defs.h \
demangle.h \
dict.h \
ltrace-elf.h \
ltrace.h \
options.h \
output.h \
read_config_file.h
dist_man1_MANS = \
ltrace.1
dist_doc_DATA = \
COPYING \
README \
TODO \
BUGS \
ChangeLog
dist_sysconf_DATA = \
etc/ltrace.conf
EXTRA_DIST = \
ltrace.spec \
debian/changelog \
debian/compat \
debian/control \
debian/copyright \
debian/rules
MAINTAINERCLEANFILES = \
configure \
Makefile.in \
aclocal.m4 \
config.h.in \
config.h.in~ \
config/autoconf/compile \
config/autoconf/config.guess \
config/autoconf/config.sub \
config/autoconf/depcomp \
config/autoconf/install-sh \
config/autoconf/ltmain.sh \
config/autoconf/mdate-sh \
config/autoconf/missing \
config/autoconf/texinfo.tex \
libtool.m4 \
ltoptions.m4 \
ltsugar.m4 \
ltversion.m4 \
lt~obsolete.m4 \
$(DIST_ARCHIVES)
maintainer-clean-local:
-chmod -R a+rw $(distdir)
-rm -fr $(distdir)