diff options
author | Anas Nashif <anas.nashif@intel.com> | 2013-01-15 08:32:18 -0800 |
---|---|---|
committer | Anas Nashif <anas.nashif@intel.com> | 2013-01-15 08:32:18 -0800 |
commit | 689b9dbb8d7f88ab91e7741932ed000b6e49be9a (patch) | |
tree | 463f5a1df8b2d35644c260e7bf6c8e0a26198af1 /Makefile.am | |
parent | 59749d048d9e452f049f9151735b5256756919c3 (diff) | |
download | ltrace-689b9dbb8d7f88ab91e7741932ed000b6e49be9a.tar.gz ltrace-689b9dbb8d7f88ab91e7741932ed000b6e49be9a.tar.bz2 ltrace-689b9dbb8d7f88ab91e7741932ed000b6e49be9a.zip |
Imported Upstream version 0.7.2upstream/0.7.2
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 157 |
1 files changed, 157 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..6e46949 --- /dev/null +++ b/Makefile.am @@ -0,0 +1,157 @@ +# This file is part of ltrace. +# Copyright (C) 2012 Petr Machata, Red Hat Inc. +# Copyright (C) 2010 Marc Kleine-Budde, Pengutronix +# Copyright (C) 2010 Zachary T Welch, CodeSourcery +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; either version 2 of the +# License, or (at your option) any later version. +# +# This program 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 +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA + +ACLOCAL_AMFLAGS = -I config/m4 + +SUBDIRS = \ + sysdeps \ + . \ + testsuite + +AM_CPPFLAGS += \ + $(libelf_CFLAGS) \ + -DSYSCONFDIR=\"$(sysconfdir)\" + +noinst_LTLIBRARIES = \ + libltrace.la + +libltrace_la_SOURCES = \ + breakpoints.c \ + debug.c \ + demangle.c \ + dict.c \ + ltrace-elf.c \ + execute_program.c \ + handle_event.c \ + libltrace.c \ + options.c \ + output.c \ + proc.c \ + read_config_file.c \ + summary.c \ + library.c \ + filter.c \ + glob.c \ + type.c \ + value.c \ + value_dict.c \ + expr.c \ + fetch.c \ + vect.c \ + param.c \ + printf.c \ + zero.c \ + lens.c \ + lens_default.c \ + lens_enum.c + +libltrace_la_LIBADD = \ + $(libelf_LIBS) \ + $(liberty_LIBS) \ + $(libsupcxx_LIBS) \ + $(libstdcxx_LIBS) \ + $(libunwind_LIBS) \ + sysdeps/libos.la + + +bin_PROGRAMS = \ + ltrace + +ltrace_SOURCES = \ + main.c + +ltrace_LDADD = \ + libltrace.la + + +noinst_HEADERS = \ + backend.h \ + breakpoint.h \ + common.h \ + debug.h \ + defs.h \ + demangle.h \ + dict.h \ + forward.h \ + ltrace-elf.h \ + ltrace.h \ + options.h \ + output.h \ + proc.h \ + read_config_file.h \ + library.h \ + filter.h \ + glob.h \ + vect.h \ + type.h \ + value.h \ + value_dict.h \ + callback.h \ + expr.h \ + fetch.h \ + vect.h \ + param.h \ + printf.h \ + zero.h \ + lens.h \ + lens_default.h \ + lens_enum.h + +dist_man1_MANS = ltrace.1 +dist_man5_MANS = ltrace.conf.5 + +dist_doc_DATA = COPYING CREDITS INSTALL README TODO + +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) |