Files
sysprof/tools/Makefile.am
Christian Hergert 29c4ec495f Land Sysprof 2.x
This is a major redesign a modernization of Sysprof. The core data
structures and design are largely the same, but it has been ported to
Gtk3 and has lots of additions that should make your profiling experience
smoother. Especially for those that are new to profiling.

There are some very simple help docs added, but we really need the
experts to come in and write some documentation here.
2016-04-13 05:24:03 -07:00

20 lines
430 B
Makefile

bin_PROGRAMS = sysprof-cli
noinst_PROGRAMS = sysprof-dump
AM_CPPFLAGS = \
$(SYSPROF_CFLAGS) \
-I$(top_srcdir)/lib \
-I$(top_builddir)/lib
sysprof_cli_SOURCES = sysprof-cli.c
sysprof_cli_LDADD = \
$(SYSPROF_LIBS) \
$(top_builddir)/lib/libsysprof-@API_VERSION@.la
sysprof_dump_SOURCES = sysprof-dump.c
sysprof_dump_LDADD = \
$(SYSPROF_LIBS) \
$(top_builddir)/lib/libsysprof-@API_VERSION@.la
-include $(top_srcdir)/git.mk