mirror of
https://github.com/varun-r-mallya/sysprof.git
synced 2025-12-31 20:36:25 +00:00
Mon Oct 10 14:33:50 2005 Søren Sandmann <sandmann@redhat.com> * configure.ac: Add --disable-kernel-module option. Patch from Pascal Terjan.
70 lines
1.2 KiB
Makefile
70 lines
1.2 KiB
Makefile
SUBDIRS = $(MODULE_SUBDIR)
|
|
DIST_SUBDIRS = module
|
|
|
|
bin_PROGRAMS = sysprof sysprof-text
|
|
pkgdata_DATA = sysprof.glade sysprof-icon.png
|
|
|
|
sysprof_SOURCES = \
|
|
binfile.h \
|
|
binfile.c \
|
|
process.h \
|
|
process.c \
|
|
profile.h \
|
|
profile.c \
|
|
sfile.h \
|
|
sfile.c \
|
|
stackstash.h \
|
|
stackstash.c \
|
|
module/sysprof-module.h \
|
|
sysprof.c \
|
|
treeviewutils.h \
|
|
treeviewutils.c \
|
|
watch.h \
|
|
watch.c
|
|
|
|
sysprof_text_SOURCES = \
|
|
binfile.h \
|
|
binfile.c \
|
|
process.h \
|
|
process.c \
|
|
profile.h \
|
|
profile.c \
|
|
sfile.h \
|
|
sfile.c \
|
|
stackstash.h \
|
|
stackstash.c \
|
|
module/sysprof-module.h \
|
|
signal-handler.h \
|
|
signal-handler.c \
|
|
sysprof-text.c \
|
|
treeviewutils.h \
|
|
treeviewutils.c \
|
|
watch.h \
|
|
watch.c
|
|
|
|
sysprof_LDADD = $(DEP_LIBS)
|
|
|
|
sysprof_text_LDADD = $(DEP_LIBS)
|
|
|
|
INCLUDES = \
|
|
$(DEP_CFLAGS) \
|
|
-DDATADIR=\"$(pkgdatadir)\" \
|
|
-DPIXMAPDIR=\"$(datadir)/pixmaps\"
|
|
|
|
# memprof.desktop
|
|
# memprof.spec.in
|
|
|
|
EXTRA_DIST = \
|
|
sysprof.glade \
|
|
sysprof-icon.png \
|
|
module/sysprof-module.c \
|
|
module/sysprof-module.h \
|
|
module/Makefile
|
|
|
|
pixmapsdir = $(datadir)/pixmaps
|
|
pixmaps_DATA = sysprof-icon.png
|
|
|
|
insert-module:
|
|
modprobe -r sysprof-module
|
|
modprobe sysprof-module
|