~ubuntu-branches/ubuntu/karmic/vzctl/karmic

« back to all changes in this revision

Viewing changes to man/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Ola Lundqvist
  • Date: 2007-04-10 18:08:16 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20070410180816-0uuzj9fnna7gmzxv
Tags: 3.0.16-4
Etch has been released which means that this version can be uploaded
to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
INSTALL = install
2
 
 
3
 
PREFIX=/usr
4
 
MANDIR=$(PREFIX)/share/man
5
 
 
6
 
MAN8 = vzctl.8 arpsend.8 vzsplit.8 vzcfgvalidate.8 vzmemcheck.8 vzlist.8 \
7
 
        vzcalc.8 vzpid.8 vzcpucheck.8 vzmigrate.8
8
 
MAN5 = vz.conf.5 vps.conf.5 
9
 
MANS = $(MAN8) $(MAN5)
10
 
 
11
 
PSS = $(patsubst %, %.ps, $(MANS))
12
 
PDFS = $(patsubst %, %.pdf, $(MANS))
13
 
PCLS = $(patsubst %, %.pcl, $(MANS))
14
 
TXTS = $(patsubst %, %.txt, $(MANS))
15
 
GROFF = groff
16
 
#GROFF_OPTIONS = -Tps -t -msafer -man
17
 
# below is for A4 page size, requires a4.tmac
18
 
GROFF_OPTIONS = -Tps -t -ma4 -msafer -man -rC1 -rD1 -rS11
19
 
GROFF_TEXT_OPTIONS = -Tlatin1 -t -ma4 -msafer -man -rC1 -rD1 -rS11
20
 
GROFF_PCL_OPTIONS = -Tlj4 -t -ma4 -msafer -man -rC1 -rD1 -rS11 -P-pa4 -P-d1
21
 
PS2PDF = ps2pdf
22
 
 
23
 
all:
24
 
 
25
 
ps: $(PSS)
26
 
 
27
 
all.ps: $(MANS)
28
 
        $(GROFF) $(GROFF_OPTIONS) $(MANS) > all.ps
29
 
 
30
 
all.pcl: $(MANS)
31
 
        $(GROFF) $(GROFF_PCL_OPTIONS) $(MANS) > all.pcl
32
 
 
33
 
pdf: $(PDFS)
34
 
 
35
 
txt: $(TXTS)
36
 
 
37
 
clean: clean-ps clean-pdf clean-pcl clean-txt
38
 
        rm -f all.ps 
39
 
 
40
 
clean-pdf:
41
 
        rm -f $(PDFS)
42
 
 
43
 
clean-ps:
44
 
        rm -f $(PSS)
45
 
 
46
 
clean-pcl:
47
 
        rm -f $(PCLS)
48
 
 
49
 
clean-txt:
50
 
        rm -f $(TXTS)
51
 
 
52
 
 
53
 
%.5.ps: %.5
54
 
        $(GROFF) $(GROFF_OPTIONS) $< > $@
55
 
 
56
 
%.8.ps: %.8
57
 
        $(GROFF) $(GROFF_OPTIONS) $< > $@
58
 
 
59
 
%.pdf: %.ps
60
 
        $(PS2PDF) $<
61
 
 
62
 
# pcl - for HP LaserJet and compatible printers
63
 
%.5.pcl: %.5
64
 
        $(GROFF) $(GROFF_PCL_OPTIONS) $< > $@
65
 
 
66
 
%.8.pcl: %.8
67
 
        $(GROFF) $(GROFF_PCL_OPTIONS) $< > $@
68
 
 
69
 
# text with overstriking
70
 
%.5.txt.os: %.5
71
 
        $(GROFF) $(GROFF_TEXT_OPTIONS) $< > $@
72
 
%.8.txt.os: %.8
73
 
        $(GROFF) $(GROFF_TEXT_OPTIONS) $< > $@
74
 
 
75
 
# to remove overstrike
76
 
%.txt: %.txt.os
77
 
        sed 's/.//g' < $< > $@ && rm -f $<
78
 
 
79
 
install:
80
 
        $(INSTALL) -d $(DESTDIR)$(MANDIR)/man5
81
 
        $(INSTALL) -d $(DESTDIR)$(MANDIR)/man8
82
 
        for file in $(MAN8); do \
83
 
                $(INSTALL) -m 644 $$file $(DESTDIR)$(MANDIR)/man8/$$file; \
84
 
        done
85
 
        for file in $(MAN5); do \
86
 
                $(INSTALL) -m 644 $$file $(DESTDIR)$(MANDIR)/man5/$$file; \
87
 
        done
88
 
 
89
 
 
90
 
.PHONY: clean clean-ps clean-pdf
 
1
# Makefile.in generated by automake 1.9.2 from Makefile.am.
 
2
# man/Makefile.  Generated from Makefile.in by configure.
 
3
 
 
4
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
 
5
# 2003, 2004  Free Software Foundation, Inc.
 
6
# This Makefile.in is free software; the Free Software Foundation
 
7
# gives unlimited permission to copy and/or distribute it,
 
8
# with or without modifications, as long as this notice is preserved.
 
9
 
 
10
# This program is distributed in the hope that it will be useful,
 
11
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
 
12
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
 
13
# PARTICULAR PURPOSE.
 
14
 
 
15
 
 
16
 
 
17
#  Copyright (C) 2000-2007 SWsoft. All rights reserved.
 
18
#
 
19
#  This program is free software; you can redistribute it and/or modify
 
20
#  it under the terms of the GNU General Public License as published by
 
21
#  the Free Software Foundation; either version 2 of the License, or
 
22
#  (at your option) any later version.
 
23
#
 
24
#  This program is distributed in the hope that it will be useful,
 
25
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
26
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
27
#  GNU General Public License for more details.
 
28
#
 
29
#  You should have received a copy of the GNU General Public License
 
30
#  along with this program; if not, write to the Free Software
 
31
#  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
32
#
 
33
srcdir = .
 
34
top_srcdir = ..
 
35
 
 
36
pkgdatadir = $(datadir)/vzctl
 
37
pkglibdir = $(libdir)/vzctl
 
38
pkgincludedir = $(includedir)/vzctl
 
39
top_builddir = ..
 
40
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
 
41
INSTALL = /usr/bin/install -c
 
42
install_sh_DATA = $(install_sh) -c -m 644
 
43
install_sh_PROGRAM = $(install_sh) -c
 
44
install_sh_SCRIPT = $(install_sh) -c
 
45
INSTALL_HEADER = $(INSTALL_DATA)
 
46
transform = $(program_transform_name)
 
47
NORMAL_INSTALL = :
 
48
PRE_INSTALL = :
 
49
POST_INSTALL = :
 
50
NORMAL_UNINSTALL = :
 
51
PRE_UNINSTALL = :
 
52
POST_UNINSTALL = :
 
53
build_triplet = i686-pc-linux-gnu
 
54
host_triplet = i686-pc-linux-gnu
 
55
target_triplet = i686-pc-linux-gnu
 
56
subdir = man
 
57
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
 
58
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 
59
am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
 
60
        $(top_srcdir)/configure.ac
 
61
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
 
62
        $(ACLOCAL_M4)
 
63
mkinstalldirs = $(install_sh) -d
 
64
CONFIG_CLEAN_FILES =
 
65
SOURCES =
 
66
DIST_SOURCES =
 
67
man5dir = $(mandir)/man5
 
68
am__installdirs = "$(DESTDIR)$(man5dir)" "$(DESTDIR)$(man8dir)"
 
69
man8dir = $(mandir)/man8
 
70
NROFF = nroff
 
71
MANS = $(man_MANS)
 
72
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 
73
ACLOCAL = ${SHELL} /home/ola/build/debian/vzctl/vzctl-3.0.16/missing --run aclocal-1.9
 
74
AMDEP_FALSE = #
 
75
AMDEP_TRUE = 
 
76
AMTAR = ${SHELL} /home/ola/build/debian/vzctl/vzctl-3.0.16/missing --run tar
 
77
AR = ar
 
78
ARCH_IA64_FALSE = 
 
79
ARCH_IA64_TRUE = #
 
80
ARCH_X86_64_FALSE = 
 
81
ARCH_X86_64_TRUE = #
 
82
AUTOCONF = ${SHELL} /home/ola/build/debian/vzctl/vzctl-3.0.16/missing --run autoconf
 
83
AUTOHEADER = ${SHELL} /home/ola/build/debian/vzctl/vzctl-3.0.16/missing --run autoheader
 
84
AUTOMAKE = ${SHELL} /home/ola/build/debian/vzctl/vzctl-3.0.16/missing --run automake-1.9
 
85
AWK = gawk
 
86
CC = gcc
 
87
CCDEPMODE = depmode=gcc3
 
88
CFLAGS = -g -O2 -Wall -Wpointer-arith -Wcast-qual -Winline -Wcast-align -Wno-unused-parameter
 
89
CPP = gcc -E
 
90
CPPFLAGS = 
 
91
CYGPATH_W = echo
 
92
DEFS = -DPACKAGE_NAME=\"vzctl\" -DPACKAGE_TARNAME=\"vzctl\" -DPACKAGE_VERSION=\"3.0.16\" -DPACKAGE_STRING=\"vzctl\ 3.0.16\" -DPACKAGE_BUGREPORT=\"devel@openvz.org\" -DPACKAGE=\"vzctl\" -DVERSION=\"3.0.16\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 
 
93
DEPDIR = .deps
 
94
DL_LIBS = -ldl
 
95
ECHO = echo
 
96
ECHO_C = 
 
97
ECHO_N = -n
 
98
ECHO_T = 
 
99
EGREP = grep -E
 
100
ENABLE_BASHCOMP_FALSE = #
 
101
ENABLE_BASHCOMP_TRUE = 
 
102
ENABLE_CRON_FALSE = #
 
103
ENABLE_CRON_TRUE = 
 
104
ENABLE_LOGROTATE_FALSE = #
 
105
ENABLE_LOGROTATE_TRUE = 
 
106
ENABLE_UDEV_FALSE = #
 
107
ENABLE_UDEV_TRUE = 
 
108
EXEEXT = 
 
109
INSTALL_DATA = ${INSTALL} -m 644
 
110
INSTALL_PROGRAM = ${INSTALL}
 
111
INSTALL_SCRIPT = ${INSTALL}
 
112
INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s
 
113
LDFLAGS = 
 
114
LIBOBJS = 
 
115
LIBS = 
 
116
LIBTOOL = $(SHELL) $(top_builddir)/libtool
 
117
LN_S = ln -s
 
118
LTLIBOBJS = 
 
119
MAKEINFO = ${SHELL} /home/ola/build/debian/vzctl/vzctl-3.0.16/missing --run makeinfo
 
120
OBJEXT = o
 
121
PACKAGE = vzctl
 
122
PACKAGE_BUGREPORT = devel@openvz.org
 
123
PACKAGE_NAME = vzctl
 
124
PACKAGE_STRING = vzctl 3.0.16
 
125
PACKAGE_TARNAME = vzctl
 
126
PACKAGE_VERSION = 3.0.16
 
127
PATH_SEPARATOR = :
 
128
RANLIB = ranlib
 
129
SET_MAKE = 
 
130
SHELL = /bin/sh
 
131
STRIP = strip
 
132
UTIL_LIBS = -lutil
 
133
VERSION = 3.0.16
 
134
ac_ct_AR = ar
 
135
ac_ct_CC = gcc
 
136
ac_ct_RANLIB = ranlib
 
137
ac_ct_STRIP = strip
 
138
am__fastdepCC_FALSE = #
 
139
am__fastdepCC_TRUE = 
 
140
am__include = include
 
141
am__leading_dot = .
 
142
am__quote = 
 
143
am__tar = ${AMTAR} chof - "$$tardir"
 
144
am__untar = ${AMTAR} xf -
 
145
bindir = ${exec_prefix}/bin
 
146
build = i686-pc-linux-gnu
 
147
build_alias = 
 
148
build_cpu = i686
 
149
build_os = linux-gnu
 
150
build_vendor = pc
 
151
datadir = ${prefix}/share
 
152
exec_prefix = ${prefix}
 
153
host = i686-pc-linux-gnu
 
154
host_alias = 
 
155
host_cpu = i686
 
156
host_os = linux-gnu
 
157
host_vendor = pc
 
158
includedir = ${prefix}/include
 
159
infodir = ${prefix}/info
 
160
install_sh = /home/ola/build/debian/vzctl/vzctl-3.0.16/install-sh
 
161
libdir = ${exec_prefix}/lib
 
162
libexecdir = ${exec_prefix}/libexec
 
163
localstatedir = /var
 
164
mandir = /usr/share/man
 
165
mkdir_p = mkdir -p --
 
166
oldincludedir = /usr/include
 
167
prefix = /usr
 
168
program_transform_name = s,x,x,
 
169
sbindir = ${exec_prefix}/sbin
 
170
sharedstatedir = ${prefix}/com
 
171
sysconfdir = /etc
 
172
target = i686-pc-linux-gnu
 
173
target_alias = 
 
174
target_cpu = i686
 
175
target_os = linux-gnu
 
176
target_vendor = pc
 
177
man_MANS = arpsend.8 \
 
178
           vps.conf.5 \
 
179
           vzcalc.8 \
 
180
           vzcfgvalidate.8 \
 
181
           vz.conf.5 \
 
182
           vzcpucheck.8 \
 
183
           vzctl.8 \
 
184
           vzlist.8 \
 
185
           vzmemcheck.8 \
 
186
           vzmigrate.8 \
 
187
           vzpid.8 \
 
188
           vzsplit.8
 
189
 
 
190
EXTRA_DIST = $(man_MANS)
 
191
all: all-am
 
192
 
 
193
.SUFFIXES:
 
194
$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
 
195
        @for dep in $?; do \
 
196
          case '$(am__configure_deps)' in \
 
197
            *$$dep*) \
 
198
              cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
 
199
                && exit 0; \
 
200
              exit 1;; \
 
201
          esac; \
 
202
        done; \
 
203
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  man/Makefile'; \
 
204
        cd $(top_srcdir) && \
 
205
          $(AUTOMAKE) --foreign  man/Makefile
 
206
.PRECIOUS: Makefile
 
207
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
 
208
        @case '$?' in \
 
209
          *config.status*) \
 
210
            cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
 
211
          *) \
 
212
            echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
 
213
            cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
 
214
        esac;
 
215
 
 
216
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 
217
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
218
 
 
219
$(top_srcdir)/configure:  $(am__configure_deps)
 
220
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
221
$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 
222
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
223
 
 
224
mostlyclean-libtool:
 
225
        -rm -f *.lo
 
226
 
 
227
clean-libtool:
 
228
        -rm -rf .libs _libs
 
229
 
 
230
distclean-libtool:
 
231
        -rm -f libtool
 
232
uninstall-info-am:
 
233
install-man5: $(man5_MANS) $(man_MANS)
 
234
        @$(NORMAL_INSTALL)
 
235
        test -z "$(man5dir)" || $(mkdir_p) "$(DESTDIR)$(man5dir)"
 
236
        @list='$(man5_MANS) $(dist_man5_MANS) $(nodist_man5_MANS)'; \
 
237
        l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \
 
238
        for i in $$l2; do \
 
239
          case "$$i" in \
 
240
            *.5*) list="$$list $$i" ;; \
 
241
          esac; \
 
242
        done; \
 
243
        for i in $$list; do \
 
244
          if test -f $(srcdir)/$$i; then file=$(srcdir)/$$i; \
 
245
          else file=$$i; fi; \
 
246
          ext=`echo $$i | sed -e 's/^.*\\.//'`; \
 
247
          case "$$ext" in \
 
248
            5*) ;; \
 
249
            *) ext='5' ;; \
 
250
          esac; \
 
251
          inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \
 
252
          inst=`echo $$inst | sed -e 's/^.*\///'`; \
 
253
          inst=`echo $$inst | sed '$(transform)'`.$$ext; \
 
254
          echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man5dir)/$$inst'"; \
 
255
          $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man5dir)/$$inst"; \
 
256
        done
 
257
uninstall-man5:
 
258
        @$(NORMAL_UNINSTALL)
 
259
        @list='$(man5_MANS) $(dist_man5_MANS) $(nodist_man5_MANS)'; \
 
260
        l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \
 
261
        for i in $$l2; do \
 
262
          case "$$i" in \
 
263
            *.5*) list="$$list $$i" ;; \
 
264
          esac; \
 
265
        done; \
 
266
        for i in $$list; do \
 
267
          ext=`echo $$i | sed -e 's/^.*\\.//'`; \
 
268
          case "$$ext" in \
 
269
            5*) ;; \
 
270
            *) ext='5' ;; \
 
271
          esac; \
 
272
          inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \
 
273
          inst=`echo $$inst | sed -e 's/^.*\///'`; \
 
274
          inst=`echo $$inst | sed '$(transform)'`.$$ext; \
 
275
          echo " rm -f '$(DESTDIR)$(man5dir)/$$inst'"; \
 
276
          rm -f "$(DESTDIR)$(man5dir)/$$inst"; \
 
277
        done
 
278
install-man8: $(man8_MANS) $(man_MANS)
 
279
        @$(NORMAL_INSTALL)
 
280
        test -z "$(man8dir)" || $(mkdir_p) "$(DESTDIR)$(man8dir)"
 
281
        @list='$(man8_MANS) $(dist_man8_MANS) $(nodist_man8_MANS)'; \
 
282
        l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \
 
283
        for i in $$l2; do \
 
284
          case "$$i" in \
 
285
            *.8*) list="$$list $$i" ;; \
 
286
          esac; \
 
287
        done; \
 
288
        for i in $$list; do \
 
289
          if test -f $(srcdir)/$$i; then file=$(srcdir)/$$i; \
 
290
          else file=$$i; fi; \
 
291
          ext=`echo $$i | sed -e 's/^.*\\.//'`; \
 
292
          case "$$ext" in \
 
293
            8*) ;; \
 
294
            *) ext='8' ;; \
 
295
          esac; \
 
296
          inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \
 
297
          inst=`echo $$inst | sed -e 's/^.*\///'`; \
 
298
          inst=`echo $$inst | sed '$(transform)'`.$$ext; \
 
299
          echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man8dir)/$$inst'"; \
 
300
          $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man8dir)/$$inst"; \
 
301
        done
 
302
uninstall-man8:
 
303
        @$(NORMAL_UNINSTALL)
 
304
        @list='$(man8_MANS) $(dist_man8_MANS) $(nodist_man8_MANS)'; \
 
305
        l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \
 
306
        for i in $$l2; do \
 
307
          case "$$i" in \
 
308
            *.8*) list="$$list $$i" ;; \
 
309
          esac; \
 
310
        done; \
 
311
        for i in $$list; do \
 
312
          ext=`echo $$i | sed -e 's/^.*\\.//'`; \
 
313
          case "$$ext" in \
 
314
            8*) ;; \
 
315
            *) ext='8' ;; \
 
316
          esac; \
 
317
          inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \
 
318
          inst=`echo $$inst | sed -e 's/^.*\///'`; \
 
319
          inst=`echo $$inst | sed '$(transform)'`.$$ext; \
 
320
          echo " rm -f '$(DESTDIR)$(man8dir)/$$inst'"; \
 
321
          rm -f "$(DESTDIR)$(man8dir)/$$inst"; \
 
322
        done
 
323
tags: TAGS
 
324
TAGS:
 
325
 
 
326
ctags: CTAGS
 
327
CTAGS:
 
328
 
 
329
 
 
330
distdir: $(DISTFILES)
 
331
        @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
 
332
        topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
 
333
        list='$(DISTFILES)'; for file in $$list; do \
 
334
          case $$file in \
 
335
            $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
 
336
            $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
 
337
          esac; \
 
338
          if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
 
339
          dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
 
340
          if test "$$dir" != "$$file" && test "$$dir" != "."; then \
 
341
            dir="/$$dir"; \
 
342
            $(mkdir_p) "$(distdir)$$dir"; \
 
343
          else \
 
344
            dir=''; \
 
345
          fi; \
 
346
          if test -d $$d/$$file; then \
 
347
            if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
 
348
              cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
 
349
            fi; \
 
350
            cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
 
351
          else \
 
352
            test -f $(distdir)/$$file \
 
353
            || cp -p $$d/$$file $(distdir)/$$file \
 
354
            || exit 1; \
 
355
          fi; \
 
356
        done
 
357
check-am: all-am
 
358
check: check-am
 
359
all-am: Makefile $(MANS)
 
360
installdirs:
 
361
        for dir in "$(DESTDIR)$(man5dir)" "$(DESTDIR)$(man8dir)"; do \
 
362
          test -z "$$dir" || $(mkdir_p) "$$dir"; \
 
363
        done
 
364
install: install-am
 
365
install-exec: install-exec-am
 
366
install-data: install-data-am
 
367
uninstall: uninstall-am
 
368
 
 
369
install-am: all-am
 
370
        @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
 
371
 
 
372
installcheck: installcheck-am
 
373
install-strip:
 
374
        $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 
375
          install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 
376
          `test -z '$(STRIP)' || \
 
377
            echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
 
378
mostlyclean-generic:
 
379
 
 
380
clean-generic:
 
381
 
 
382
distclean-generic:
 
383
        -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
 
384
 
 
385
maintainer-clean-generic:
 
386
        @echo "This command is intended for maintainers to use"
 
387
        @echo "it deletes files that may require special tools to rebuild."
 
388
clean: clean-am
 
389
 
 
390
clean-am: clean-generic clean-libtool mostlyclean-am
 
391
 
 
392
distclean: distclean-am
 
393
        -rm -f Makefile
 
394
distclean-am: clean-am distclean-generic distclean-libtool
 
395
 
 
396
dvi: dvi-am
 
397
 
 
398
dvi-am:
 
399
 
 
400
html: html-am
 
401
 
 
402
info: info-am
 
403
 
 
404
info-am:
 
405
 
 
406
install-data-am: install-man
 
407
 
 
408
install-exec-am:
 
409
 
 
410
install-info: install-info-am
 
411
 
 
412
install-man: install-man5 install-man8
 
413
 
 
414
installcheck-am:
 
415
 
 
416
maintainer-clean: maintainer-clean-am
 
417
        -rm -f Makefile
 
418
maintainer-clean-am: distclean-am maintainer-clean-generic
 
419
 
 
420
mostlyclean: mostlyclean-am
 
421
 
 
422
mostlyclean-am: mostlyclean-generic mostlyclean-libtool
 
423
 
 
424
pdf: pdf-am
 
425
 
 
426
pdf-am:
 
427
 
 
428
ps: ps-am
 
429
 
 
430
ps-am:
 
431
 
 
432
uninstall-am: uninstall-info-am uninstall-man
 
433
 
 
434
uninstall-man: uninstall-man5 uninstall-man8
 
435
 
 
436
.PHONY: all all-am check check-am clean clean-generic clean-libtool \
 
437
        distclean distclean-generic distclean-libtool distdir dvi \
 
438
        dvi-am html html-am info info-am install install-am \
 
439
        install-data install-data-am install-exec install-exec-am \
 
440
        install-info install-info-am install-man install-man5 \
 
441
        install-man8 install-strip installcheck installcheck-am \
 
442
        installdirs maintainer-clean maintainer-clean-generic \
 
443
        mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \
 
444
        ps ps-am uninstall uninstall-am uninstall-info-am \
 
445
        uninstall-man uninstall-man5 uninstall-man8
 
446
 
 
447
# Tell versions [3.59,3.63) of GNU make to not export all variables.
 
448
# Otherwise a system limit (for SysV at least) may be exceeded.
 
449
.NOEXPORT: