Changeset 503 for trunk/src/gmake/doc/Makefile.in
- Timestamp:
- Sep 15, 2006, 7:09:38 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gmake/doc/Makefile.in
r200 r503 1 # Makefile.in generated by automake 1. 8.3from Makefile.am.1 # Makefile.in generated by automake 1.9.6 from Makefile.am. 2 2 # @configure_input@ 3 3 4 4 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 5 # 2003, 2004 Free Software Foundation, Inc.5 # 2003, 2004, 2005 Free Software Foundation, Inc. 6 6 # This Makefile.in is free software; the Free Software Foundation 7 7 # gives unlimited permission to copy and/or distribute it, … … 16 16 17 17 # -*-Makefile-*-, or close enough 18 # Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software 19 # Foundation, Inc. 20 # This file is part of GNU Make. 21 # 22 # GNU Make is free software; you can redistribute it and/or modify it under the 23 # terms of the GNU General Public License as published by the Free Software 24 # Foundation; either version 2, or (at your option) any later version. 25 # 26 # GNU Make is distributed in the hope that it will be useful, but WITHOUT ANY 27 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR 28 # A PARTICULAR PURPOSE. See the GNU General Public License for more details. 29 # 30 # You should have received a copy of the GNU General Public License along with 31 # GNU Make; see the file COPYING. If not, write to the Free Software 32 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 18 33 srcdir = @srcdir@ 19 34 top_srcdir = @top_srcdir@ … … 36 51 PRE_UNINSTALL = : 37 52 POST_UNINSTALL = : 53 build_triplet = @build@ 38 54 host_triplet = @host@ 39 55 subdir = doc 40 56 DIST_COMMON = $(make_TEXINFOS) $(srcdir)/Makefile.am \ 41 $(srcdir)/Makefile.in 57 $(srcdir)/Makefile.in $(srcdir)/stamp-vti \ 58 $(srcdir)/version.texi 42 59 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 43 am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ 44 $(top_srcdir)/configure.in 60 am__aclocal_m4_deps = $(top_srcdir)/config/dospaths.m4 \ 61 $(top_srcdir)/config/gettext.m4 $(top_srcdir)/config/iconv.m4 \ 62 $(top_srcdir)/config/lib-ld.m4 \ 63 $(top_srcdir)/config/lib-link.m4 \ 64 $(top_srcdir)/config/lib-prefix.m4 $(top_srcdir)/config/nls.m4 \ 65 $(top_srcdir)/config/po.m4 $(top_srcdir)/config/progtest.m4 \ 66 $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.in 45 67 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ 46 68 $(ACLOCAL_M4) … … 134 156 USE_NLS = @USE_NLS@ 135 157 VERSION = @VERSION@ 158 WINDOWSENV_FALSE = @WINDOWSENV_FALSE@ 159 WINDOWSENV_TRUE = @WINDOWSENV_TRUE@ 136 160 XGETTEXT = @XGETTEXT@ 137 161 ac_ct_CC = @ac_ct_CC@ … … 143 167 am__leading_dot = @am__leading_dot@ 144 168 am__quote = @am__quote@ 169 am__tar = @am__tar@ 170 am__untar = @am__untar@ 145 171 bindir = @bindir@ 146 172 build = @build@ … … 211 237 212 238 .texi.info: 213 restore=: && \ 214 backupdir="$(am__leading_dot)am$$$$" && \ 239 restore=: && backupdir="$(am__leading_dot)am$$$$" && \ 215 240 am__cwd=`pwd` && cd $(srcdir) && \ 216 241 rm -rf $$backupdir && mkdir $$backupdir && \ 217 for f in $@ $@-[0-9] $@-[0-9][0-9] $(@:.info=).i[0-9] $(@:.info=).i[0-9][0-9]; do \ 218 if test -f $$f; then \ 219 mv $$f $$backupdir; \ 220 restore=mv; \ 221 fi; \ 222 done; \ 242 if ($(MAKEINFO) --version) >/dev/null 2>&1; then \ 243 for f in $@ $@-[0-9] $@-[0-9][0-9] $(@:.info=).i[0-9] $(@:.info=).i[0-9][0-9]; do \ 244 if test -f $$f; then mv $$f $$backupdir; restore=mv; else :; fi; \ 245 done; \ 246 else :; fi && \ 223 247 cd "$$am__cwd"; \ 224 248 if $(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I $(srcdir) \ … … 232 256 $$restore $$backupdir/* `echo "./$@" | sed 's|[^/]*$$||'`; \ 233 257 fi; \ 234 rm -rf $$backupdir; \ 235 exit $$rc 258 rm -rf $$backupdir; exit $$rc 236 259 237 260 .texi.dvi: … … 246 269 247 270 .texi.html: 248 $(MAKEINFOHTML) $(AM_MAKEINFOHTMLFLAGS) $(MAKEINFOFLAGS) -I $(srcdir) \ 249 -o $@ $< 250 if test ! -d $@ && test -d $(@:.html=); then \ 251 mv $(@:.html=) $@; else :; fi 252 $(srcdir)/make.info: make.texi $(make_TEXINFOS) 253 make.dvi: make.texi $(make_TEXINFOS) 254 make.pdf: make.texi $(make_TEXINFOS) 255 make.html: make.texi $(make_TEXINFOS) 271 rm -rf $(@:.html=.htp) 272 if $(MAKEINFOHTML) $(AM_MAKEINFOHTMLFLAGS) $(MAKEINFOFLAGS) -I $(srcdir) \ 273 -o $(@:.html=.htp) $<; \ 274 then \ 275 rm -rf $@; \ 276 if test ! -d $(@:.html=.htp) && test -d $(@:.html=); then \ 277 mv $(@:.html=) $@; else mv $(@:.html=.htp) $@; fi; \ 278 else \ 279 if test ! -d $(@:.html=.htp) && test -d $(@:.html=); then \ 280 rm -rf $(@:.html=); else rm -Rf $(@:.html=.htp) $@; fi; \ 281 exit 1; \ 282 fi 283 $(srcdir)/make.info: make.texi $(srcdir)/version.texi $(make_TEXINFOS) 284 make.dvi: make.texi $(srcdir)/version.texi $(make_TEXINFOS) 285 make.pdf: make.texi $(srcdir)/version.texi $(make_TEXINFOS) 286 make.html: make.texi $(srcdir)/version.texi $(make_TEXINFOS) 287 $(srcdir)/version.texi: $(srcdir)/stamp-vti 288 $(srcdir)/stamp-vti: make.texi $(top_srcdir)/configure 289 @(dir=.; test -f ./make.texi || dir=$(srcdir); \ 290 set `$(SHELL) $(top_srcdir)/config/mdate-sh $$dir/make.texi`; \ 291 echo "@set UPDATED $$1 $$2 $$3"; \ 292 echo "@set UPDATED-MONTH $$2 $$3"; \ 293 echo "@set EDITION $(VERSION)"; \ 294 echo "@set VERSION $(VERSION)") > vti.tmp 295 @cmp -s vti.tmp $(srcdir)/version.texi \ 296 || (echo "Updating $(srcdir)/version.texi"; \ 297 cp vti.tmp $(srcdir)/version.texi) 298 -@rm -f vti.tmp 299 @cp $(srcdir)/version.texi $@ 300 301 mostlyclean-vti: 302 -rm -f vti.tmp 303 304 maintainer-clean-vti: 305 -rm -f $(srcdir)/stamp-vti $(srcdir)/version.texi 256 306 .dvi.ps: 307 TEXINPUTS="$(am__TEXINFO_TEX_DIR)$(PATH_SEPARATOR)$$TEXINPUTS" \ 257 308 $(DVIPS) -o $@ $< 258 309 259 310 uninstall-info-am: 260 $(PRE_UNINSTALL)311 @$(PRE_UNINSTALL) 261 312 @if (install-info --version && \ 262 313 install-info --version 2>&1 | sed 1q | grep -i -v debian) >/dev/null 2>&1; then \ … … 274 325 relfile_i=`echo "$$relfile" | sed 's|\.info$$||;s|$$|.i|'`; \ 275 326 (if cd "$(DESTDIR)$(infodir)"; then \ 276 echo " rm -f $$relfile $$relfile-[0-9] $$relfile-[0-9][0-9] $$relfile_i[0-9] $$relfile_i[0-9][0-9])"; \327 echo " cd '$(DESTDIR)$(infodir)' && rm -f $$relfile $$relfile-[0-9] $$relfile-[0-9][0-9] $$relfile_i[0-9] $$relfile_i[0-9][0-9]"; \ 277 328 rm -f $$relfile $$relfile-[0-9] $$relfile-[0-9][0-9] $$relfile_i[0-9] $$relfile_i[0-9][0-9]; \ 278 329 else :; fi); \ … … 369 420 370 421 distclean-generic: 371 - rm -f $(CONFIG_CLEAN_FILES)422 -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) 372 423 373 424 maintainer-clean-generic: … … 435 486 -rm -f Makefile 436 487 maintainer-clean-am: distclean-am maintainer-clean-aminfo \ 437 maintainer-clean-generic 488 maintainer-clean-generic maintainer-clean-vti 438 489 439 490 mostlyclean: mostlyclean-am 440 491 441 mostlyclean-am: mostlyclean-aminfo mostlyclean-generic 492 mostlyclean-am: mostlyclean-aminfo mostlyclean-generic mostlyclean-vti 442 493 443 494 pdf: pdf-am … … 457 508 install-man install-strip installcheck installcheck-am \ 458 509 installdirs maintainer-clean maintainer-clean-aminfo \ 459 maintainer-clean-generic m ostlyclean mostlyclean-aminfo\460 mostlyclean- generic pdf pdf-am ps ps-am uninstall uninstall-am\461 uninstall-info-am510 maintainer-clean-generic maintainer-clean-vti mostlyclean \ 511 mostlyclean-aminfo mostlyclean-generic mostlyclean-vti pdf \ 512 pdf-am ps ps-am uninstall uninstall-am uninstall-info-am 462 513 463 514
Note:
See TracChangeset
for help on using the changeset viewer.