mirror of
https://github.com/varun-r-mallya/sysprof.git
synced 2025-12-31 20:36:25 +00:00
Sun May 15 10:24:09 2005 Soeren Sandmann <sandmann@redhat.com> * Makefile.am, module/Makefile: Do more-or-less what the automake manual suggests about foreign subdirectories.
48 lines
832 B
Makefile
48 lines
832 B
Makefile
SUBDIRS = module
|
|
DIST_SUBDIRS = module
|
|
|
|
bin_PROGRAMS = sysprof
|
|
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_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
|