Files
sysprof/src/Makefile.am
Christian Hergert 61fed5b8f2 build: split profiler and gtk widgets into separate libraries
This will make it easier to support installing just sysprof-cli and the
sysprofd helper daemon on systems where GTK is not feasible or necessary.
This does not, however, do that. It simply gets things broken up into
pieces.
2016-04-13 21:09:52 -07:00

41 lines
791 B
Makefile

bin_PROGRAMS = sysprof
sysprof_CFLAGS = \
$(SYSPROF_UI_CFLAGS) \
-I$(top_srcdir)/lib \
-I$(top_builddir)/lib
sysprof_SOURCES = \
sysprof.c \
sp-application.c \
sp-application.h \
sp-credits.h \
sp-window.c \
sp-window.h \
sp-window-settings.c \
sp-window-settings.h \
$(NULL)
nodist_sysprof_SOURCES = \
sp-resources.c \
sp-resources.h
sysprof_LDADD = \
$(SYSPROF_UI_LIBS) \
$(top_builddir)/lib/libsysprof-@API_VERSION@.la \
$(top_builddir)/lib/libsysprof-ui-@API_VERSION@.la \
$(NULL)
EXTRA_DIST =
CLEANFILES =
DISTCLEANFILES =
BUILT_SOURCES =
glib_resources_xml = resources/sysprof.gresource.xml
glib_resources_c = sp-resources.c
glib_resources_h = sp-resources.h
glib_resources_namespace = sysprof
include $(top_srcdir)/gresources.mk
-include $(top_srcdir)/git.mk