aboutsummaryrefslogtreecommitdiff
path: root/Makefile.am
blob: 994a4b5656a3105938794b31220f1c232866a8bf (plain)
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
SUBDIRS = \
	sysdeps

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) \
	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 = \
	.gitignore \
	autogen.sh \
	ltrace.spec \
	\
	debian/changelog \
	debian/compat \
	debian/control.in \
	debian/copyright \
	debian/rules

MAINTAINERCLEANFILES = \
	configure \
	Makefile.in \
	aclocal.m4 \
	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)