blob: 5e61fea8462bec15fa6776ac0e9d2bcec742c1d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
include $(top_srcdir)/config/include-Makefile.am
bin_PROGRAMS =
usrbinexec_PROGRAMS = cal ddate logger look mcookie \
namei script whereis
mcookie_LDADD = $(top_srcdir)/lib/libmd5.a
usrbinexec_SCRIPTS = chkdupexe scriptreplay
chkdupexe: chkdupexe.pl
sed -e 's,[@]PERL[@],$(PERL),g' < chkdupexe.pl > chkdupexe
scriptreplay: scriptreplay.pl
sed -e 's,[@]PERL[@],$(PERL),g' < scriptreplay.pl > scriptreplay
CLEANFILES = chkdupexe scriptreplay
man_MANS = cal.1 chkdupexe.1 ddate.1 logger.1 look.1 mcookie.1 \
namei.1 script.1 whereis.1
if HAVE_NCURSES
cal_LDADD = -lncurses
else
if HAVE_TERMCAP
cal_LDADD = -ltermcap
endif
endif
if HAVE_LIBUTIL
script_LDADD = -lutil
endif
if HAVE_NCURSES
usrbinexec_PROGRAMS += setterm
man_MANS += setterm.1
setterm_LDADD = -lncurses
endif
if BUILD_KILL
bin_PROGRAMS += kill
kill_SOURCES = kill.c procs.c
man_MANS += kill.1
endif
if BUILD_RENAME
usrbinexec_PROGRAMS += rename
man_MANS += rename.1
endif
if BUILD_RESET
usrbinexec_SCRIPTS += reset
man_MANS += reset.1
endif
if BUILD_WRITE
usrbinexec_PROGRAMS += write
man_MANS += write.1
if USE_TTY_GROUP
install-exec-hook::
chgrp tty $(DESTDIR)$(usrbinexecdir)/write
chmod g+s $(DESTDIR)$(usrbinexecdir)/write
endif
endif
|