mirror of
https://github.com/varun-r-mallya/sysprof.git
synced 2025-12-31 20:36:25 +00:00
Sat May 14 15:49:52 2005 Søren Sandmann <sandmann@redhat.com> Auto*ify. * TODO: updates * AUTHORS, INSTALL, Makefile.am, NEWS, configure.ac: New files * module/Makefile: New file * module/sysprof-module.c, module/sysprof-module.h: Move these files to their own directy, as the kernel build system does not work very well with auto*. * sysprof.c, autogen.sh: Some auto* changes.
51 lines
947 B
Makefile
51 lines
947 B
Makefile
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 \
|
|
sysprof-module.h \
|
|
sysprof.c \
|
|
treeviewutils.h \
|
|
treeviewutils.c \
|
|
watch.h \
|
|
watch.c
|
|
|
|
sysprof_LDADD = $(DEP_LIBS)
|
|
|
|
INCLUDES = \
|
|
$(DEP_CFLAGS) \
|
|
-DDATADIR=\"$(pkgdatadir)\" \
|
|
-DPKGLIBDIR=\"$(pkglibdir)\"
|
|
|
|
# memprof.desktop
|
|
# memprof.spec.in
|
|
|
|
EXTRA_DIST = \
|
|
sysprof.glade \
|
|
sysprof-icon.png
|
|
|
|
pixmapsdir = $(datadir)/pixmaps
|
|
pixmaps_DATA = sysprof-icon.png
|
|
|
|
modulesdir = /lib/modules/`uname -r`/kernel/drivers
|
|
modules_DATA = module/sysprof-module.ko
|
|
|
|
CLEANFILES = \
|
|
module/sysprof-module.mod.c \
|
|
module/sysprof-module.mod.h \
|
|
module/sysprof-module.mod.o \
|
|
module/sysprof-module.o \
|
|
module/sysprof-module.ko
|
|
|
|
module/sysprof-module.ko:
|
|
(cd module && $(MAKE))
|