Makefile.am revision 584929c4409d55c3483caca7bdf6ba85f5b20f14
1SUBDIRS = \
2	sysdeps
3
4AM_CPPFLAGS = \
5	$(libelf_CFLAGS) \
6	-DSYSCONFDIR=\"$(sysconfdir)\"
7
8noinst_LTLIBRARIES = \
9	libltrace.la
10
11libltrace_la_SOURCES = \
12	breakpoints.c \
13	debug.c \
14	demangle.c \
15	dict.c \
16	display_args.c \
17	ltrace-elf.c \
18	execute_program.c \
19	handle_event.c \
20	libltrace.c \
21	options.c \
22	output.c \
23	proc.c \
24	read_config_file.c  \
25	summary.c
26
27libltrace_la_LIBADD = \
28	$(libelf_LIBS) \
29	$(liberty_LIBS) \
30	$(libsupcxx_LIBS) \
31	sysdeps/libos.la
32
33
34bin_PROGRAMS = \
35	ltrace
36
37ltrace_SOURCES = \
38	main.c
39
40ltrace_LDADD = \
41	libltrace.la
42
43
44noinst_HEADERS = \
45	common.h \
46	debug.h \
47	defs.h \
48	demangle.h \
49	dict.h \
50	ltrace-elf.h \
51	ltrace.h \
52	options.h \
53	output.h \
54	read_config_file.h
55
56dist_man1_MANS = \
57	ltrace.1
58
59dist_doc_DATA = \
60	COPYING \
61	README \
62	TODO \
63	BUGS \
64	ChangeLog
65
66dist_sysconf_DATA = \
67	etc/ltrace.conf
68
69EXTRA_DIST = \
70	.gitignore \
71	autogen.sh \
72	ltrace.spec \
73	\
74	debian/changelog \
75	debian/compat \
76	debian/control.in \
77	debian/copyright \
78	debian/rules
79
80MAINTAINERCLEANFILES = \
81	configure \
82	Makefile.in \
83	aclocal.m4 \
84	config/autoconf/compile \
85	config/autoconf/config.guess \
86	config/autoconf/config.sub \
87	config/autoconf/depcomp \
88	config/autoconf/install-sh \
89	config/autoconf/ltmain.sh \
90	config/autoconf/mdate-sh \
91	config/autoconf/missing \
92	config/autoconf/texinfo.tex \
93	libtool.m4 \
94	ltoptions.m4 \
95	ltsugar.m4 \
96	ltversion.m4 \
97	lt~obsolete.m4 \
98	$(DIST_ARCHIVES)
99
100maintainer-clean-local:
101	-chmod -R a+rw $(distdir)
102	-rm -fr $(distdir)
103