.deps
.libs
.version
+.dirstamp
ABOUT-NLS
aclocal.m4
autom4te.cache
-I$(top_srcdir)/include \
-DLOCALEDIR=\"$(localedir)\"
+PACKAGE_VERSION = @PACKAGE_VERSION@
+
ACLOCAL_AMFLAGS = -I m4
SUBDIRS = \
include \
- lib \
man-po \
po \
- proc \
- ps \
- testsuite \
- top
+ testsuite
AM_CFLAGS = -Iproc
AM_LDFLAGS = ./proc/libprocps.la
+transform = s/pscommand/ps/; $(program_transform_name)
+
+bin_PROGRAMS = \
+ ps/pscommand
+
sbin_PROGRAMS = \
sysctl
+lib_LTLIBRARIES = \
+ proc/libprocps.la
+
usrbin_exec_PROGRAMS = \
free \
pgrep \
tload.1 \
uptime.1 \
vmstat.8 \
- w.1
+ w.1 \
+ ps/ps.1
EXTRA_DIST = \
autogen.sh \
Documentation/CodingStyle \
Documentation/TODO \
sysctl.conf \
+ ps/HACKING \
+ ps/regression \
$(DIST_MAN_POTS)
+procpsngdir = $(docdir)
+dist_procpsng_DATA = \
+ Documentation/BUGS \
+ Documentation/FAQ
+
if BUILD_PIDOF
usrbin_exec_PROGRAMS += pidof
dist_man_MANS += pidof.1
endif
if BUILD_KILL
-bin_PROGRAMS = kill
+bin_PROGRAMS += kill
dist_man_MANS += kill.1
kill_SOURCES = skill.c lib/strutils.c lib/fileutils.c lib/nsutils.c
else
if WITH_NCURSES
usrbin_exec_PROGRAMS += \
slabtop \
- watch
+ watch \
+ top/top
dist_man_MANS += \
slabtop.1 \
- watch.1
+ watch.1 \
+ top/top.1
slabtop_SOURCES = slabtop.c lib/strutils.c lib/fileutils.c
slabtop_LDADD = @NCURSES_LIBS@
watch_SOURCES = watch.c lib/strutils.c lib/fileutils.c
watch_LDADD = @WATCH_NCURSES_LIBS@
+top_top_SOURCES = \
+ top/top.h \
+ top/top.c \
+ top/top_nls.h \
+ top/top_nls.c \
+ lib/fileutils.c
+top_top_LDADD = @NCURSES_LIBS@ $(DL_LIB)
+dist_procpsng_DATA += \
+ top/README.top
endif
if BUILD_SKILL
vmstat_SOURCES = vmstat.c lib/strutils.c lib/fileutils.c
w_SOURCES = w.c lib/fileutils.c
+# proc/libprocps.la
+
+# See http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
+LIBprocps_CURRENT=4
+LIBprocps_REVISION=0
+LIBprocps_AGE=0
+
+proc_libprocps_la_LIBADD = $(LIB_KPARTS)
+
+if WITH_SYSTEMD
+proc_libprocps_la_LIBADD += @SYSTEMD_LIBS@
+endif
+
+proc_libprocps_la_LDFLAGS = \
+ -version-info $(LIBprocps_CURRENT):$(LIBprocps_REVISION):$(LIBprocps_AGE) \
+ -no-undefined \
+ -Wl,--version-script=$(top_srcdir)/proc/libprocps.sym
+
+proc_libprocps_la_SOURCES = \
+ proc/alloc.c \
+ proc/alloc.h \
+ proc/devname.c \
+ proc/devname.h \
+ proc/escape.c \
+ proc/escape.h \
+ proc/ksym.c \
+ proc/procps.h \
+ proc/pwcache.c \
+ proc/pwcache.h \
+ proc/readproc.c \
+ proc/readproc.h \
+ proc/sig.c \
+ proc/sig.h \
+ proc/slab.c \
+ proc/slab.h \
+ proc/sysinfo.c \
+ proc/sysinfo.h \
+ proc/version.c \
+ proc/version.h \
+ proc/wchan.h \
+ proc/whattime.c \
+ proc/whattime.h
+
+proc_libprocps_la_includedir = $(includedir)/proc/
+proc_libprocps_la_include_HEADERS = \
+ proc/alloc.h \
+ proc/devname.h \
+ proc/escape.h \
+ proc/procps.h \
+ proc/pwcache.h \
+ proc/readproc.h \
+ proc/sig.h \
+ proc/slab.h \
+ proc/sysinfo.h \
+ proc/version.h \
+ proc/wchan.h \
+ proc/whattime.h
+
+dist_man_MANS += \
+ proc/openproc.3 \
+ proc/readproc.3 \
+ proc/readproctab.3
+
+pkgconfigdir = $(libdir)/pkgconfig
+pkgconfig_DATA = \
+ proc/libprocps.pc
+
+EXTRA_DIST += proc/libprocps.sym
+
+# ps/pscommand
+
+ps_pscommand_SOURCES = \
+ ps/common.h \
+ ps/display.c \
+ ps/global.c \
+ ps/help.c \
+ ps/output.c \
+ ps/parser.c \
+ ps/select.c \
+ ps/sortformat.c \
+ ps/stacktrace.c \
+ lib/fileutils.c
+
+# lib/test_* binaries
+noinst_PROGRAMS = lib/test_strutils lib/test_fileutils lib/test_nsutils
+
+lib_test_strutils_SOURCES = lib/test_strutils.c lib/strutils.c
+lib_test_fileutils_SOURCES = lib/test_fileutils.c lib/fileutils.c
+lib_test_nsutils_SOURCES = lib/test_nsutils.c lib/nsutils.c
+
if EXAMPLE_FILES
sysconf_DATA = sysctl.conf
endif
-procpsngdir = $(docdir)
-dist_procpsng_DATA = \
- Documentation/BUGS \
- Documentation/FAQ
-
BUILT_SOURCES = $(top_srcdir)/.version
$(top_srcdir)/.version:
AC_CONFIG_FILES([Makefile
include/Makefile
- lib/Makefile
- man-po/Makefile
- po/Makefile.in
- proc/Makefile
+ man-po/Makefile
+ po/Makefile.in
proc/libprocps.pc
- ps/Makefile
- testsuite/Makefile
- top/Makefile])
+ testsuite/Makefile])
AC_OUTPUT
+++ /dev/null
-AM_CPPFLAGS = \
- -include $(top_builddir)/config.h \
- -I$(top_srcdir) \
- -I$(top_srcdir)/include \
- -DLOCALEDIR=\"$(localedir)\"
-
-noinst_PROGRAMS = test_strutils test_fileutils test_nsutils
-
-test_strutils_SOURCES = test_strutils.c strutils.c
-test_fileutils_SOURCES = test_fileutils.c fileutils.c
-test_nsutils_SOURCES = test_nsutils.c nsutils.c
+++ /dev/null
-PACKAGE_VERSION = @PACKAGE_VERSION@
-AM_CPPFLAGS = \
- -include $(top_builddir)/config.h \
- -I$(top_srcdir) \
- -I$(top_srcdir)/include \
- -DLOCALEDIR=\"$(localedir)\"
-
-#
-# See http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
-LIBprocps_CURRENT=4
-LIBprocps_REVISION=0
-LIBprocps_AGE=0
-
-lib_LTLIBRARIES = libprocps.la
-
-if WITH_SYSTEMD
-AM_LDFLAGS = @SYSTEMD_LIBS@
-endif
-
-libprocps_ladir = $(ladir)
-libprocps_la_LIBADD = $(LIB_KPARTS)
-libprocps_la_LDFLAGS = \
- $(AM_LDFLAGS) \
- $(all_libraries) \
- -version-info $(LIBprocps_CURRENT):$(LIBprocps_REVISION):$(LIBprocps_AGE) \
- -no-undefined \
- -Wl,--version-script=$(top_srcdir)/proc/libprocps.sym
-
-dist_man_MANS = \
- openproc.3 \
- readproc.3 \
- readproctab.3
-
-EXTRA_DIST = libprocps.sym
-
-pkgconfigdir = $(libdir)/pkgconfig
-pkgconfig_DATA = libprocps.pc
-
-libprocps_la_SOURCES = \
- alloc.c \
- alloc.h \
- devname.c \
- devname.h \
- escape.c \
- escape.h \
- ksym.c \
- procps.h \
- pwcache.c \
- pwcache.h \
- readproc.c \
- readproc.h \
- sig.c \
- sig.h \
- slab.c \
- slab.h \
- sysinfo.c \
- sysinfo.h \
- version.c \
- version.h \
- wchan.h \
- whattime.c \
- whattime.h
-
-libprocps_la_includedir = $(includedir)/proc/
-libprocps_la_include_HEADERS = \
- alloc.h \
- devname.h \
- escape.h \
- procps.h \
- pwcache.h \
- readproc.h \
- sig.h \
- slab.h \
- sysinfo.h \
- version.h \
- wchan.h \
- whattime.h
+++ /dev/null
-AM_CPPFLAGS = \
- -include $(top_builddir)/config.h \
- -I$(top_srcdir) \
- -I$(top_srcdir)/include \
- -DLOCALEDIR=\"$(localedir)\"
-
-AM_LDFLAGS = ../proc/libprocps.la
-
-dist_man_MANS = ps.1
-
-# Use `ginstall' in the definition of PROGRAMS and in dependencies to avoid
-# confusion with the `install' target. The install rule transforms `ginstall'
-# to install before applying any user-specified name transformations.
-transform = s/pscommand/ps/; $(program_transform_name)
-bin_PROGRAMS = pscommand
-pscommand_SOURCES = \
- common.h \
- display.c \
- global.c \
- help.c \
- output.c \
- parser.c \
- select.c \
- sortformat.c \
- stacktrace.c \
- $(top_srcdir)/lib/fileutils.c
-
-EXTRA_DIST = \
- HACKING \
- regression
+++ /dev/null
-AM_CPPFLAGS = \
- -include $(top_builddir)/config.h \
- -I$(top_srcdir) \
- -I$(top_srcdir)/include \
- -DLOCALEDIR=\"$(localedir)\"
-
-AM_LDFLAGS = ../proc/libprocps.la
-AM_LDFLAGS += $(DL_LIB)
-
-if WITH_NCURSES
-usrbin_exec_PROGRAMS = \
- top
-
-top_SOURCES = \
- top.h \
- top.c \
- top_nls.h \
- top_nls.c \
- $(top_srcdir)/lib/fileutils.c
-
-dist_man_MANS = \
- top.1
-
-top_LDADD = @NCURSES_LIBS@
-endif
-
-EXTRA_DIST =
-
-procpsngdir = $(docdir)
-dist_procpsng_DATA = \
- README.top