~ubuntu-branches/ubuntu/saucy/procps/saucy

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: Package Import Robot
  • Author(s): Oliver Grawert
  • Date: 2012-06-20 13:12:40 UTC
  • mfrom: (2.1.21 sid)
  • Revision ID: package-import@ubuntu.com-20120620131240-923p0d8q88bmk3ac
Tags: 1:3.3.3-2ubuntu1
* Merge from Debian unstable.  Remaining changes:
  - debian/sysctl.d (Ubuntu-specific):
    + 10-console-messages.conf: stop low-level kernel messages on console.
    + 10-kernel-hardening.conf: add the kptr_restrict setting
    + 10-keyboard.conf.powerpc: mouse button emulation on PowerPC.
    + 10-network-security.conf: enable rp_filter and SYN-flood protection.
    + 10-ptrace.conf: describe new PTRACE setting.
    + 10-zeropage.conf: safe mmap_min_addr value for graceful fall-back.
    + README: describe how this directory is supposed to work.
  - debian/upstart (Ubuntu-specific): upstart configuration to replace old
    style sysv init script

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
AM_CPPFLAGS = \
 
2
        -include $(top_builddir)/config.h \
 
3
        -I$(top_srcdir)/include \
 
4
        -DLOCALEDIR=\"$(localedir)\"
 
5
 
 
6
ACLOCAL_AMFLAGS = -I m4
 
7
SUBDIRS = \
 
8
        include \
 
9
        lib \
 
10
        po \
 
11
        proc \
 
12
        ps \
 
13
        testsuite \
 
14
        top
 
15
 
 
16
AM_CFLAGS = -Iproc
 
17
AM_LDFLAGS = ./proc/libprocps.la
 
18
 
 
19
sbin_PROGRAMS = \
 
20
        sysctl
 
21
 
 
22
usrbin_exec_PROGRAMS = \
 
23
        free \
 
24
        pgrep \
 
25
        pkill \
 
26
        pmap \
 
27
        pwdx \
 
28
        tload \
 
29
        uptime \
 
30
        vmstat \
 
31
        w
 
32
 
 
33
dist_man_MANS = \
 
34
        free.1 \
 
35
        pgrep.1 \
 
36
        pkill.1 \
 
37
        pmap.1 \
 
38
        pwdx.1 \
 
39
        sysctl.8 \
 
40
        sysctl.conf.5 \
 
41
        tload.1 \
 
42
        uptime.1 \
 
43
        vmstat.8 \
 
44
        w.1
 
45
 
 
46
if BUILD_KILL
 
47
bin_PROGRAMS = kill
 
48
dist_man_MANS += kill.1
 
49
kill_SOURCES = skill.c $(top_srcdir)/lib/strutils.c $(top_srcdir)/lib/fileutils.c
 
50
endif
 
51
 
 
52
if WITH_NCURSES
 
53
usrbin_exec_PROGRAMS += \
 
54
        slabtop \
 
55
        watch
 
56
dist_man_MANS += \
 
57
        slabtop.1 \
 
58
        watch.1
 
59
slabtop_SOURCES = slabtop.c $(top_srcdir)/lib/strutils.c $(top_srcdir)/lib/fileutils.c
 
60
slabtop_LDADD = @NCURSES_LIBS@
 
61
watch_SOURCES = watch.c $(top_srcdir)/lib/strutils.c $(top_srcdir)/lib/fileutils.c
 
62
watch_LDADD = @WATCH_NCURSES_LIBS@
 
63
endif
 
64
 
 
65
if BUILD_SKILL
 
66
usrbin_exec_PROGRAMS += \
 
67
        skill \
 
68
        snice
 
69
skill_SOURCES = skill.c $(top_srcdir)/lib/strutils.c $(top_srcdir)/lib/fileutils.c
 
70
snice_SOURCES = skill.c $(top_srcdir)/lib/strutils.c $(top_srcdir)/lib/fileutils.c
 
71
dist_man_MANS += \
 
72
        skill.1 \
 
73
        snice.1
 
74
endif
 
75
 
 
76
free_SOURCES = free.c $(top_srcdir)/lib/strutils.c $(top_srcdir)/lib/fileutils.c
 
77
pgrep_SOURCES = pgrep.c $(top_srcdir)/lib/fileutils.c
 
78
pkill_SOURCES = pgrep.c $(top_srcdir)/lib/fileutils.c
 
79
pmap_SOURCES = pmap.c $(top_srcdir)/lib/fileutils.c
 
80
pwdx_SOURCES = pwdx.c $(top_srcdir)/lib/fileutils.c
 
81
sysctl_SOURCES = sysctl.c $(top_srcdir)/lib/fileutils.c
 
82
tload_SOURCES = tload.c $(top_srcdir)/lib/strutils.c $(top_srcdir)/lib/fileutils.c
 
83
uptime_SOURCES = uptime.c $(top_srcdir)/lib/fileutils.c
 
84
vmstat_SOURCES = vmstat.c $(top_srcdir)/lib/strutils.c $(top_srcdir)/lib/fileutils.c
 
85
w_SOURCES = w.c $(top_srcdir)/lib/fileutils.c
 
86
 
 
87
if EXAMPLE_FILES
 
88
sysconf_DATA = sysctl.conf
 
89
endif
 
90
 
 
91
EXTRA_DIST = \
 
92
        autogen.sh \
 
93
        contrib \
 
94
        COPYING.LIB \
 
95
        Documentation/CodingStyle \
 
96
        Documentation/TODO \
 
97
        $(sysconf_DATA)
 
98
 
 
99
procpsngdir = $(docdir)
 
100
dist_procpsng_DATA = \
 
101
        Documentation/BUGS \
 
102
        Documentation/FAQ