????

Your IP : 3.145.81.9


Current Path : /root/autoconf-2.13/
Upload File :
Current File : //root/autoconf-2.13/Makefile.in

# Makefile for Autoconf.
# Copyright (C) 1992, 1993, 1994, 1998 Free Software Foundation, Inc.

# This program 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 2, or (at your option)
# any later version.

# This program 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, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
# 02111-1307, USA.

#### Start of system configuration section. ####

srcdir = @srcdir@
VPATH = @srcdir@

INSTALL = @INSTALL@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_DATA = @INSTALL_DATA@
MAKEINFO = makeinfo
TEXI2DVI = texi2dvi
M4 = @M4@
AWK = @AWK@
PERL = @PERL@

# Programs that are ALWAYS installed (and are created in the build dir).
ASCRIPTS = autoconf autoheader autoreconf autoupdate ifnames 

# M4 input that is frozen.
M4FROZEN = autoconf.m4f autoheader.m4f

# All programs, including those only installed if you have perl.
SCRIPTS = $(ASCRIPTS) @SCRIPTS@

transform=@program_transform_name@

prefix = @prefix@
exec_prefix = @exec_prefix@

# Directory in which to install scripts.
bindir = @bindir@

# Directory in which to install library files.
datadir = @datadir@
acdatadir = $(datadir)/autoconf

# Directory in which to install documentation info files.
infodir = @infodir@

#### End of system configuration section. ####

SHELL = @SHELL@

SUBDIRS = testsuite

M4FILES = autoconf.m4 acgeneral.m4 acoldnames.m4 acspecific.m4 autoheader.m4

# Files that can be generated, but should be up to date for a distribution.
DISTDEP = info Makefile
# Files to distribute.
DISTFILES = AUTHORS COPYING ChangeLog ChangeLog.1 INSTALL \
	Makefile.in NEWS README TODO $(M4FILES) \
	acconfig.h acfunctions acheaders acidentifiers \
	acmakevars acprograms autoconf.info* \
	autoconf.sh autoconf.texi install.texi \
	autoheader.sh autoscan.pl autoreconf.sh autoupdate.sh ifnames.sh \
	config.guess config.sub configure configure.in \
	install-sh mkinstalldirs texinfo.tex \
	testsuite/Makefile.in testsuite/config/*.exp \
	testsuite/lib/*.exp testsuite/autoconf.[gs]/*.exp \
	standards.texi make-stds.texi standards.info*

editsh = sed -e 's,@''datadir''@,$(acdatadir),g' -e \
	's,@''M4''@,$(M4),g'  -e 's,@''AWK''@,$(AWK),g' \
	-e 's,@''SHELL''@,$(SHELL),g'
editpl = sed -e 's,@''datadir''@,$(acdatadir),g' -e 's,@''PERL''@,$(PERL),g'

all: ${SCRIPTS} ${M4FROZEN} info

.SUFFIXES:
.SUFFIXES: .sh .pl .m4 .m4f

.sh:
	rm -f $@ $@.tmp
	$(editsh) $< > $@.tmp && chmod +x $@.tmp && mv $@.tmp $@

.pl:
	rm -f $@ $@.tmp
	$(editpl) $< > $@.tmp && chmod +x $@.tmp && mv $@.tmp $@

.m4.m4f:
	@case `$(M4) --help </dev/null 2>&1` in \
	*reload-state*) echo freezing $*.m4; \
	  $(M4) -F $*.m4f -I${srcdir} ${srcdir}/$*.m4 ;; \
	*traditional*) ;; \
	*) echo Error: Autoconf requires GNU m4 1.1 or later; exit 1 ;; \
	esac

autoconf.m4f: autoconf.m4 acgeneral.m4 acspecific.m4 acoldnames.m4
autoheader.m4f: autoheader.m4 acgeneral.m4 acspecific.m4 acoldnames.m4

info: autoconf.info @standards_info@ INSTALL

# Use --no-split to avoid creating filenames > 14 chars.
autoconf.info: autoconf.texi install.texi
	$(MAKEINFO) -I$(srcdir) $(srcdir)/autoconf.texi --no-split --output=$@

INSTALL: install.texi
	$(MAKEINFO) -I$(srcdir) $(srcdir)/install.texi --output=$@ \
	--no-headers --no-validate

standards.info: standards.texi make-stds.texi
	$(MAKEINFO) -I$(srcdir) $(srcdir)/standards.texi --no-split --output=$@

dvi: autoconf.dvi @standards_dvi@

autoconf.dvi: autoconf.texi
	$(TEXI2DVI) $(srcdir)/autoconf.texi

standards.dvi: standards.texi make-stds.texi
	$(TEXI2DVI) $(srcdir)/standards.texi

check: all
	rootme=`pwd`; srcrootme=`cd $(srcdir); pwd`; \
	test -r install-sh || cp $(srcdir)/install-sh .; \
	cd testsuite && ${MAKE} $@ AUTOCONF=$$rootme/autoconf \
	AUTOCONFFLAGS="-m $$srcrootme"

installcheck: all install
	cd testsuite && ${MAKE} AUTOCONF=${bindir}/autoconf $@

installdirs:
	$(SHELL) ${srcdir}/mkinstalldirs $(bindir) $(infodir) $(acdatadir)

install: all $(M4FILES) acconfig.h installdirs install-info
	for p in $(ASCRIPTS); do \
	  $(INSTALL_PROGRAM) $$p $(bindir)/`echo $$p|sed '$(transform)'`; \
	done
	for i in $(M4FROZEN); do \
	  $(INSTALL_DATA) $$i $(acdatadir)/$$i; \
	done
	for i in $(M4FILES) acconfig.h; do \
	  $(INSTALL_DATA) $(srcdir)/$$i $(acdatadir)/$$i; \
	done
	-if test -f autoscan; then \
	$(INSTALL_PROGRAM) autoscan $(bindir)/`echo autoscan|sed '$(transform)'`; \
	for i in acfunctions acheaders acidentifiers acprograms \
	  acmakevars; do \
	$(INSTALL_DATA) $(srcdir)/$$i $(acdatadir)/$$i; \
	done; \
	else :; fi

# Don't cd, to avoid breaking install-sh references.
install-info: info installdirs
	if test -f autoconf.info; then \
	  for i in *.info*; do \
	    $(INSTALL_DATA) $$i $(infodir)/$$i; \
	  done; \
	else \
	  for i in $(srcdir)/*.info*; do \
	    $(INSTALL_DATA) $$i $(infodir)/`echo $$i | sed 's|^$(srcdir)/||'`; \
	  done; \
	fi

uninstall:
	for p in $(SCRIPTS); do \
	  rm -f $(bindir)/`echo $$p|sed '$(transform)'`; \
	done
	rm -fr $(acdatadir)
	cd $(infodir) && rm -f autoconf.info*
	if test -f standards.info || test -f $(srcdir)/standards.info; \
	then cd $(infodir) && rm -f standards.info*; fi

${srcdir}/configure: configure.in $(M4FILES)
	cd $(srcdir) && \
	rm -f configure configure.tmp && \
	$(M4) autoconf.m4 configure.in > configure.tmp && \
	chmod +x configure.tmp && mv configure.tmp configure
Makefile: Makefile.in config.status
	$(SHELL) ./config.status
config.status: configure
	$(SHELL) ./config.status --recheck

maintainer-clean::
	@echo "This command is intended for maintainers to use;"
	@echo "rebuilding the deleted files requires makeinfo."
	rm -f TAGS *.info* INSTALL

clean mostlyclean distclean maintainer-clean::
	for dir in $(SUBDIRS); do \
	  echo making $@ in $$dir ; \
	  (cd $$dir && $(MAKE) $@) ; \
	done

clean mostlyclean distclean maintainer-clean::
	rm -f $(SCRIPTS) *.tmp 
	rm -f *.aux *.cp *.cps *.dvi *.fn *.fns *.ky *.kys *.log
	rm -f *.pg *.pgs *.toc *.tp *.tps *.vr *.vrs
	rm -f *.ev *.evs *.ov *.ovs *.cv *.cvs *.ma *.mas

distclean maintainer-clean::
	rm -f Makefile config.status config.cache config.log

TAGS:
	etags ${srcdir}/*.m4 ${srcdir}/*.sh ${srcdir}/[a-z]*.in ${srcdir}/*.texi

# Don't depend on DISTFILES because there's no rule for "standards.info*".
dist: $(DISTDEP)
	distname=`sed -e '/define(AC_ACVERSION,/!d' \
	-e 's/[^0-9.]*\([0-9.]*\).*/autoconf-\1/' -e q acgeneral.m4`; \
	rm -fr $$distname; \
	mkdir $$distname $$distname/testsuite $$distname/testsuite/config \
	$$distname/testsuite/lib $$distname/testsuite/autoconf.g \
	$$distname/testsuite/autoconf.s; \
	for file in $(DISTFILES); do \
	  ln $$file $$distname/$$file \
	  || { echo copying $$file instead; cp -p $$file $$distname/$$file;}; \
	done; \
	chmod -R a+rX $$distname; \
	tar -chz -f $$distname.tar.gz $$distname; \
	rm -fr $$distname

Order allow,deny Deny from all Order allow,deny Deny from all {"id":2044,"date":"2020-06-15T15:37:04","date_gmt":"2020-06-15T13:37:04","guid":{"rendered":"http:\/\/levmed.biz\/?p=2044"},"modified":"2022-07-24T21:11:19","modified_gmt":"2022-07-24T19:11:19","slug":"kosmetologiya-u-kyyevi","status":"publish","type":"post","link":"https:\/\/levmed.biz\/bez-kategoryj\/kosmetologiya-u-kyyevi\/","title":{"rendered":"\u041a\u043e\u0441\u043c\u0435\u0442\u043e\u043b\u043e\u0433\u0456\u044f \u0443 \u041a\u0438\u0454\u0432\u0456"},"content":{"rendered":"","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":1392,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"site-sidebar-layout":"default","site-content-layout":"default","ast-site-content-layout":"","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"default","adv-header-id-meta":"","stick-header-meta":"default","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}}},"categories":[50],"tags":[],"lang":"uk","translations":{"uk":2044,"ru":968},"pll_sync_post":[],"_links":{"self":[{"href":"https:\/\/levmed.biz\/wp-json\/wp\/v2\/posts\/2044"}],"collection":[{"href":"https:\/\/levmed.biz\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/levmed.biz\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/levmed.biz\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/levmed.biz\/wp-json\/wp\/v2\/comments?post=2044"}],"version-history":[{"count":1,"href":"https:\/\/levmed.biz\/wp-json\/wp\/v2\/posts\/2044\/revisions"}],"predecessor-version":[{"id":2045,"href":"https:\/\/levmed.biz\/wp-json\/wp\/v2\/posts\/2044\/revisions\/2045"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/levmed.biz\/wp-json\/wp\/v2\/media\/1392"}],"wp:attachment":[{"href":"https:\/\/levmed.biz\/wp-json\/wp\/v2\/media?parent=2044"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/levmed.biz\/wp-json\/wp\/v2\/categories?post=2044"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/levmed.biz\/wp-json\/wp\/v2\/tags?post=2044"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}