Files
sysprof/tools/Makefile.am
Christian Hergert 5d25b8a242 build: be a bit more flexible with configuration options
It would be nice if we can be a bit more flexible with where the
sysprof-cli tool can run. Lets try to break out the system checks a
bit more.
2016-04-14 00:59:28 -07:00

20 lines
418 B
Makefile

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