File: Makefile.am

package info (click to toggle)
inetutils 2%3A1.9.4-7%2Bdeb10u1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 13,088 kB
  • sloc: ansic: 101,500; sh: 8,962; yacc: 1,651; makefile: 669; perl: 47
file content (110 lines) | stat: -rw-r--r-- 2,513 bytes parent folder | download
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
#
# Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015
# Free Software Foundation, Inc.
#
# This file is part of GNU Inetutils.
#
# GNU Inetutils is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or (at
# your option) any later version.
#
# GNU Inetutils is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see `http://www.gnu.org/licenses/'.

AM_CPPFLAGS = $(iu_INCLUDES)

LDADD = $(iu_LIBRARIES)

noinst_PROGRAMS = identify
identify_LDADD = $(top_builddir)/lib/libgnu.a $(LIBUTIL)

check_PROGRAMS = localhost readutmp waitdaemon

dist_check_SCRIPTS = utmp.sh

if ENABLE_inetd
check_PROGRAMS += addrpeek tcpget
endif

if ENABLE_libls
noinst_PROGRAMS += ls
ls_LDADD = $(LIBLS) $(iu_LIBRARIES)
dist_check_SCRIPTS += libls.sh
endif

if ENABLE_ping
dist_check_SCRIPTS += ping-localhost.sh
endif
if ENABLE_traceroute
dist_check_SCRIPTS += traceroute-localhost.sh
endif
if ENABLE_inetd
if ENABLE_tftpd
if ENABLE_tftp
dist_check_SCRIPTS += tftp.sh
endif
endif
endif
if ENABLE_logger
if ENABLE_syslogd
dist_check_SCRIPTS += syslogd.sh
endif
endif

if ENABLE_ftp
dist_check_SCRIPTS += ftp-parser.sh
endif

if ENABLE_inetd
if ENABLE_ftp
if ENABLE_ftpd
dist_check_SCRIPTS += ftp-localhost.sh
endif
endif
endif

if ENABLE_inetd
if ENABLE_telnet
dist_check_SCRIPTS += inetd.sh telnet-localhost.sh
endif
endif

if ENABLE_hostname
dist_check_SCRIPTS += hostname.sh
endif

if ENABLE_dnsdomainname
dist_check_SCRIPTS += dnsdomainname.sh
endif

if ENABLE_ifconfig
dist_check_SCRIPTS += ifconfig.sh
endif

TESTS = localhost waitdaemon $(dist_check_SCRIPTS)

TESTS_ENVIRONMENT = EXEEXT=$(EXEEXT)

EXTRA_DIST = tools.sh.in ifconfig_modes.sh

BUILT_SOURCES = tools.sh

CLEANFILES = tools.sh

tools_subst = sed -e 's,[@]GREP[@],$(GREP),g' \
	      -e 's,[@]SED[@],$(SED),g' \
	      -e 's,[@]DD[@],$(DD),g' \
	      -e 's,[@]MKTEMP[@],$(MKTEMP),g' \
	      -e 's,[@]NETSTAT[@],$(NETSTAT),g'\
	      -e 's,[@]TARGET[@],$(TARGET),g'\
	      -e 's,[@]TARGET6[@],$(TARGET6),g'\
	      -e 's,[@]TEST_IPV6[@],$(TEST_IPV6),g'

tools.sh: tools.sh.in Makefile
	$(tools_subst) < $(srcdir)/tools.sh.in > $@