17b5fefc8Smrg# Makefile.in generated by automake 1.16.5 from Makefile.am. 2644fc5c1Stron# @configure_input@ 3644fc5c1Stron 47b5fefc8Smrg# Copyright (C) 1994-2021 Free Software Foundation, Inc. 57b5fefc8Smrg 6644fc5c1Stron# This Makefile.in is free software; the Free Software Foundation 7644fc5c1Stron# gives unlimited permission to copy and/or distribute it, 8644fc5c1Stron# with or without modifications, as long as this notice is preserved. 9644fc5c1Stron 10644fc5c1Stron# This program is distributed in the hope that it will be useful, 11644fc5c1Stron# but WITHOUT ANY WARRANTY, to the extent permitted by law; without 12644fc5c1Stron# even the implied warranty of MERCHANTABILITY or FITNESS FOR A 13644fc5c1Stron# PARTICULAR PURPOSE. 14644fc5c1Stron 15644fc5c1Stron@SET_MAKE@ 16644fc5c1Stron 17644fc5c1Stron# Copyright 2005 Red Hat, Inc. 18644fc5c1Stron# 19644fc5c1Stron# Permission to use, copy, modify, distribute, and sell this software 20644fc5c1Stron# and its documentation for any purpose is hereby granted without 21644fc5c1Stron# fee, provided that the above copyright notice appear in all copies 22644fc5c1Stron# and that both that copyright notice and this permission notice 23644fc5c1Stron# appear in supporting documentation, and that the name of Red Hat 24644fc5c1Stron# not be used in advertising or publicity pertaining to distribution 25644fc5c1Stron# of the software without specific, written prior permission. Red 26644fc5c1Stron# Hat makes no representations about the suitability of this software 27644fc5c1Stron# for any purpose. It is provided "as is" without express or implied 28644fc5c1Stron# warranty. 29644fc5c1Stron# 30644fc5c1Stron# RED HAT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 31644fc5c1Stron# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN 32644fc5c1Stron# NO EVENT SHALL RED HAT BE LIABLE FOR ANY SPECIAL, INDIRECT OR 33644fc5c1Stron# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS 34644fc5c1Stron# OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, 35644fc5c1Stron# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN 36644fc5c1Stron# CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 37644fc5c1Stron 38644fc5c1StronVPATH = @srcdir@ 397b5fefc8Smrgam__is_gnu_make = { \ 407b5fefc8Smrg if test -z '$(MAKELEVEL)'; then \ 417b5fefc8Smrg false; \ 427b5fefc8Smrg elif test -n '$(MAKE_HOST)'; then \ 437b5fefc8Smrg true; \ 447b5fefc8Smrg elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ 457b5fefc8Smrg true; \ 467b5fefc8Smrg else \ 477b5fefc8Smrg false; \ 487b5fefc8Smrg fi; \ 497b5fefc8Smrg} 507b5fefc8Smrgam__make_running_with_option = \ 517b5fefc8Smrg case $${target_option-} in \ 527b5fefc8Smrg ?) ;; \ 537b5fefc8Smrg *) echo "am__make_running_with_option: internal error: invalid" \ 547b5fefc8Smrg "target option '$${target_option-}' specified" >&2; \ 557b5fefc8Smrg exit 1;; \ 567b5fefc8Smrg esac; \ 577b5fefc8Smrg has_opt=no; \ 587b5fefc8Smrg sane_makeflags=$$MAKEFLAGS; \ 597b5fefc8Smrg if $(am__is_gnu_make); then \ 607b5fefc8Smrg sane_makeflags=$$MFLAGS; \ 617b5fefc8Smrg else \ 627b5fefc8Smrg case $$MAKEFLAGS in \ 637b5fefc8Smrg *\\[\ \ ]*) \ 647b5fefc8Smrg bs=\\; \ 657b5fefc8Smrg sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ 667b5fefc8Smrg | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ 677b5fefc8Smrg esac; \ 687b5fefc8Smrg fi; \ 697b5fefc8Smrg skip_next=no; \ 707b5fefc8Smrg strip_trailopt () \ 717b5fefc8Smrg { \ 727b5fefc8Smrg flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ 737b5fefc8Smrg }; \ 747b5fefc8Smrg for flg in $$sane_makeflags; do \ 757b5fefc8Smrg test $$skip_next = yes && { skip_next=no; continue; }; \ 767b5fefc8Smrg case $$flg in \ 777b5fefc8Smrg *=*|--*) continue;; \ 787b5fefc8Smrg -*I) strip_trailopt 'I'; skip_next=yes;; \ 797b5fefc8Smrg -*I?*) strip_trailopt 'I';; \ 807b5fefc8Smrg -*O) strip_trailopt 'O'; skip_next=yes;; \ 817b5fefc8Smrg -*O?*) strip_trailopt 'O';; \ 827b5fefc8Smrg -*l) strip_trailopt 'l'; skip_next=yes;; \ 837b5fefc8Smrg -*l?*) strip_trailopt 'l';; \ 847b5fefc8Smrg -[dEDm]) skip_next=yes;; \ 857b5fefc8Smrg -[JT]) skip_next=yes;; \ 867b5fefc8Smrg esac; \ 877b5fefc8Smrg case $$flg in \ 887b5fefc8Smrg *$$target_option*) has_opt=yes; break;; \ 897b5fefc8Smrg esac; \ 907b5fefc8Smrg done; \ 917b5fefc8Smrg test $$has_opt = yes 927b5fefc8Smrgam__make_dryrun = (target_option=n; $(am__make_running_with_option)) 937b5fefc8Smrgam__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 94644fc5c1Stronpkgdatadir = $(datadir)/@PACKAGE@ 95644fc5c1Stronpkgincludedir = $(includedir)/@PACKAGE@ 962227fc13Smrgpkglibdir = $(libdir)/@PACKAGE@ 972227fc13Smrgpkglibexecdir = $(libexecdir)/@PACKAGE@ 98644fc5c1Stronam__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd 99644fc5c1Stroninstall_sh_DATA = $(install_sh) -c -m 644 100644fc5c1Stroninstall_sh_PROGRAM = $(install_sh) -c 101644fc5c1Stroninstall_sh_SCRIPT = $(install_sh) -c 102644fc5c1StronINSTALL_HEADER = $(INSTALL_DATA) 103644fc5c1Strontransform = $(program_transform_name) 104644fc5c1StronNORMAL_INSTALL = : 105644fc5c1StronPRE_INSTALL = : 106644fc5c1StronPOST_INSTALL = : 107644fc5c1StronNORMAL_UNINSTALL = : 108644fc5c1StronPRE_UNINSTALL = : 109644fc5c1StronPOST_UNINSTALL = : 1102227fc13Smrgbuild_triplet = @build@ 1112227fc13Smrghost_triplet = @host@ 1122227fc13Smrgsubdir = . 1132227fc13SmrgACLOCAL_M4 = $(top_srcdir)/aclocal.m4 1142227fc13Smrgam__aclocal_m4_deps = $(top_srcdir)/configure.ac 1152227fc13Smrgam__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ 1162227fc13Smrg $(ACLOCAL_M4) 1177b5fefc8SmrgDIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \ 1187b5fefc8Smrg $(am__configure_deps) $(am__DIST_COMMON) 1192227fc13Smrgam__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ 1202227fc13Smrg configure.lineno config.status.lineno 1212227fc13Smrgmkinstalldirs = $(install_sh) -d 1222227fc13SmrgCONFIG_CLEAN_FILES = 1232227fc13SmrgCONFIG_CLEAN_VPATH_FILES = 1247b5fefc8SmrgAM_V_P = $(am__v_P_@AM_V@) 1257b5fefc8Smrgam__v_P_ = $(am__v_P_@AM_DEFAULT_V@) 1267b5fefc8Smrgam__v_P_0 = false 1277b5fefc8Smrgam__v_P_1 = : 1287b5fefc8SmrgAM_V_GEN = $(am__v_GEN_@AM_V@) 1297b5fefc8Smrgam__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) 1307b5fefc8Smrgam__v_GEN_0 = @echo " GEN " $@; 1317b5fefc8Smrgam__v_GEN_1 = 1327b5fefc8SmrgAM_V_at = $(am__v_at_@AM_V@) 1337b5fefc8Smrgam__v_at_ = $(am__v_at_@AM_DEFAULT_V@) 1342227fc13Smrgam__v_at_0 = @ 1357b5fefc8Smrgam__v_at_1 = 1362227fc13SmrgSOURCES = 1372227fc13SmrgDIST_SOURCES = 1387b5fefc8Smrgam__can_run_installinfo = \ 1397b5fefc8Smrg case $$AM_UPDATE_INFO_DIR in \ 1407b5fefc8Smrg n|no|NO) false;; \ 1417b5fefc8Smrg *) (install-info --version) >/dev/null 2>&1;; \ 1427b5fefc8Smrg esac 1432227fc13Smrgam__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; 1442227fc13Smrgam__vpath_adj = case $$p in \ 1452227fc13Smrg $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ 1462227fc13Smrg *) f=$$p;; \ 1472227fc13Smrg esac; 1482227fc13Smrgam__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; 1492227fc13Smrgam__install_max = 40 1502227fc13Smrgam__nobase_strip_setup = \ 1512227fc13Smrg srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` 1522227fc13Smrgam__nobase_strip = \ 1532227fc13Smrg for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" 1542227fc13Smrgam__nobase_list = $(am__nobase_strip_setup); \ 1552227fc13Smrg for p in $$list; do echo "$$p $$p"; done | \ 1562227fc13Smrg sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ 1572227fc13Smrg $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ 1582227fc13Smrg if (++n[$$2] == $(am__install_max)) \ 1592227fc13Smrg { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ 1602227fc13Smrg END { for (dir in files) print dir, files[dir] }' 1612227fc13Smrgam__base_list = \ 1622227fc13Smrg sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ 1632227fc13Smrg sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' 1647b5fefc8Smrgam__uninstall_files_from_dir = { \ 1657b5fefc8Smrg test -z "$$files" \ 1667b5fefc8Smrg || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ 1677b5fefc8Smrg || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ 1687b5fefc8Smrg $(am__cd) "$$dir" && rm -f $$files; }; \ 1697b5fefc8Smrg } 1702227fc13Smrgam__installdirs = "$(DESTDIR)$(fontdir)" 1712227fc13SmrgDATA = $(font_DATA) 1727b5fefc8Smrgam__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) 1737b5fefc8Smrgam__DIST_COMMON = $(srcdir)/Makefile.in COPYING ChangeLog INSTALL \ 1747b5fefc8Smrg README.md config.guess config.sub install-sh missing 1752227fc13SmrgDISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) 1762227fc13Smrgdistdir = $(PACKAGE)-$(VERSION) 1772227fc13Smrgtop_distdir = $(distdir) 1782227fc13Smrgam__remove_distdir = \ 1797b5fefc8Smrg if test -d "$(distdir)"; then \ 1807b5fefc8Smrg find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ 1817b5fefc8Smrg && rm -rf "$(distdir)" \ 1827b5fefc8Smrg || { sleep 5 && rm -rf "$(distdir)"; }; \ 1837b5fefc8Smrg else :; fi 1847b5fefc8Smrgam__post_remove_distdir = $(am__remove_distdir) 1857b5fefc8SmrgDIST_ARCHIVES = $(distdir).tar.gz $(distdir).tar.xz 1862227fc13SmrgGZIP_ENV = --best 1877b5fefc8SmrgDIST_TARGETS = dist-xz dist-gzip 1887b5fefc8Smrg# Exists only to be overridden by the user if desired. 1897b5fefc8SmrgAM_DISTCHECK_DVI_TARGET = dvi 1902227fc13Smrgdistuninstallcheck_listfiles = find . -type f -print 1917b5fefc8Smrgam__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \ 1927b5fefc8Smrg | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$' 1932227fc13Smrgdistcleancheck_listfiles = find . -type f -print 194644fc5c1StronACLOCAL = @ACLOCAL@ 1952227fc13SmrgADMIN_MAN_DIR = @ADMIN_MAN_DIR@ 1962227fc13SmrgADMIN_MAN_SUFFIX = @ADMIN_MAN_SUFFIX@ 197644fc5c1StronAMTAR = @AMTAR@ 1982227fc13SmrgAM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ 1992227fc13SmrgAPP_MAN_DIR = @APP_MAN_DIR@ 2002227fc13SmrgAPP_MAN_SUFFIX = @APP_MAN_SUFFIX@ 201644fc5c1StronAUTOCONF = @AUTOCONF@ 202644fc5c1StronAUTOHEADER = @AUTOHEADER@ 203644fc5c1StronAUTOMAKE = @AUTOMAKE@ 204644fc5c1StronAWK = @AWK@ 205644fc5c1StronBDFTOPCF = @BDFTOPCF@ 2062227fc13SmrgCHANGELOG_CMD = @CHANGELOG_CMD@ 2072227fc13SmrgCOMPRESS = @COMPRESS@ 2087b5fefc8SmrgCOMPRESS_FLAGS = @COMPRESS_FLAGS@ 2092227fc13SmrgCOMPRESS_SUFFIX = @COMPRESS_SUFFIX@ 2107b5fefc8SmrgCSCOPE = @CSCOPE@ 2117b5fefc8SmrgCTAGS = @CTAGS@ 212644fc5c1StronCYGPATH_W = @CYGPATH_W@ 213644fc5c1StronDEFS = @DEFS@ 2142227fc13SmrgDRIVER_MAN_DIR = @DRIVER_MAN_DIR@ 2152227fc13SmrgDRIVER_MAN_SUFFIX = @DRIVER_MAN_SUFFIX@ 216644fc5c1StronECHO_C = @ECHO_C@ 217644fc5c1StronECHO_N = @ECHO_N@ 218644fc5c1StronECHO_T = @ECHO_T@ 2197b5fefc8SmrgETAGS = @ETAGS@ 2202227fc13SmrgFCCACHE = @FCCACHE@ 2212227fc13SmrgFILE_MAN_DIR = @FILE_MAN_DIR@ 2222227fc13SmrgFILE_MAN_SUFFIX = @FILE_MAN_SUFFIX@ 223644fc5c1StronFONTDIR = @FONTDIR@ 2242227fc13SmrgFONTROOTDIR = @FONTROOTDIR@ 2252227fc13SmrgINSTALL = @INSTALL@ 2262227fc13SmrgINSTALL_CMD = @INSTALL_CMD@ 227644fc5c1StronINSTALL_DATA = @INSTALL_DATA@ 228644fc5c1StronINSTALL_PROGRAM = @INSTALL_PROGRAM@ 229644fc5c1StronINSTALL_SCRIPT = @INSTALL_SCRIPT@ 230644fc5c1StronINSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ 231644fc5c1StronLIBOBJS = @LIBOBJS@ 232644fc5c1StronLIBS = @LIBS@ 2332227fc13SmrgLIB_MAN_DIR = @LIB_MAN_DIR@ 2342227fc13SmrgLIB_MAN_SUFFIX = @LIB_MAN_SUFFIX@ 235644fc5c1StronLTLIBOBJS = @LTLIBOBJS@ 236644fc5c1StronMAKEINFO = @MAKEINFO@ 2372227fc13SmrgMAN_SUBSTS = @MAN_SUBSTS@ 2382227fc13SmrgMISC_MAN_DIR = @MISC_MAN_DIR@ 2392227fc13SmrgMISC_MAN_SUFFIX = @MISC_MAN_SUFFIX@ 2402227fc13SmrgMKDIR_P = @MKDIR_P@ 241644fc5c1StronMKFONTDIR = @MKFONTDIR@ 242644fc5c1StronPACKAGE = @PACKAGE@ 243644fc5c1StronPACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ 244644fc5c1StronPACKAGE_NAME = @PACKAGE_NAME@ 245644fc5c1StronPACKAGE_STRING = @PACKAGE_STRING@ 246644fc5c1StronPACKAGE_TARNAME = @PACKAGE_TARNAME@ 2472227fc13SmrgPACKAGE_URL = @PACKAGE_URL@ 248644fc5c1StronPACKAGE_VERSION = @PACKAGE_VERSION@ 249644fc5c1StronPATH_SEPARATOR = @PATH_SEPARATOR@ 2502227fc13SmrgPKG_CONFIG = @PKG_CONFIG@ 2512227fc13SmrgPKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ 2522227fc13SmrgPKG_CONFIG_PATH = @PKG_CONFIG_PATH@ 2532227fc13SmrgRUN_FCCACHE = @RUN_FCCACHE@ 2542227fc13SmrgSED = @SED@ 255644fc5c1StronSET_MAKE = @SET_MAKE@ 256644fc5c1StronSHELL = @SHELL@ 257644fc5c1StronSTRIP = @STRIP@ 258644fc5c1StronVERSION = @VERSION@ 2592227fc13SmrgXORG_MAN_PAGE = @XORG_MAN_PAGE@ 2602227fc13Smrgabs_builddir = @abs_builddir@ 2612227fc13Smrgabs_srcdir = @abs_srcdir@ 2622227fc13Smrgabs_top_builddir = @abs_top_builddir@ 2632227fc13Smrgabs_top_srcdir = @abs_top_srcdir@ 264644fc5c1Stronam__leading_dot = @am__leading_dot@ 2652227fc13Smrgam__tar = @am__tar@ 2662227fc13Smrgam__untar = @am__untar@ 267644fc5c1Stronbindir = @bindir@ 2682227fc13Smrgbuild = @build@ 269644fc5c1Stronbuild_alias = @build_alias@ 2702227fc13Smrgbuild_cpu = @build_cpu@ 2712227fc13Smrgbuild_os = @build_os@ 2722227fc13Smrgbuild_vendor = @build_vendor@ 2732227fc13Smrgbuilddir = @builddir@ 274644fc5c1Strondatadir = @datadir@ 2752227fc13Smrgdatarootdir = @datarootdir@ 2762227fc13Smrgdocdir = @docdir@ 2772227fc13Smrgdvidir = @dvidir@ 278644fc5c1Stronexec_prefix = @exec_prefix@ 2792227fc13Smrghost = @host@ 280644fc5c1Stronhost_alias = @host_alias@ 2812227fc13Smrghost_cpu = @host_cpu@ 2822227fc13Smrghost_os = @host_os@ 2832227fc13Smrghost_vendor = @host_vendor@ 2842227fc13Smrghtmldir = @htmldir@ 285644fc5c1Stronincludedir = @includedir@ 286644fc5c1Stroninfodir = @infodir@ 287644fc5c1Stroninstall_sh = @install_sh@ 288644fc5c1Stronlibdir = @libdir@ 289644fc5c1Stronlibexecdir = @libexecdir@ 2902227fc13Smrglocaledir = @localedir@ 291644fc5c1Stronlocalstatedir = @localstatedir@ 292644fc5c1Stronmandir = @mandir@ 2932227fc13Smrgmkdir_p = @mkdir_p@ 294644fc5c1Stronoldincludedir = @oldincludedir@ 2952227fc13Smrgpdfdir = @pdfdir@ 296644fc5c1Stronprefix = @prefix@ 297644fc5c1Stronprogram_transform_name = @program_transform_name@ 2982227fc13Smrgpsdir = @psdir@ 2997b5fefc8Smrgrunstatedir = @runstatedir@ 300644fc5c1Stronsbindir = @sbindir@ 301644fc5c1Stronsharedstatedir = @sharedstatedir@ 3022227fc13Smrgsrcdir = @srcdir@ 303644fc5c1Stronsysconfdir = @sysconfdir@ 304644fc5c1Strontarget_alias = @target_alias@ 3052227fc13Smrgtop_build_prefix = @top_build_prefix@ 3062227fc13Smrgtop_builddir = @top_builddir@ 3072227fc13Smrgtop_srcdir = @top_srcdir@ 308644fc5c1StronFONT_FILES = \ 309644fc5c1Stron 12x24 \ 310644fc5c1Stron 12x24rk \ 311644fc5c1Stron 8x16 \ 312644fc5c1Stron 8x16rk 313644fc5c1Stron 314644fc5c1StronBDF_FILES = $(FONT_FILES:%=%.bdf) 3152227fc13SmrgPCF_FILES = $(FONT_FILES:%=%.pcf$(COMPRESS_SUFFIX)) 3162227fc13SmrgSUFFIXES = .bdf .pcf$(COMPRESS_SUFFIX) 317644fc5c1Stronfontdir = @FONTDIR@ 318644fc5c1Stronfont_DATA = $(PCF_FILES) 319644fc5c1StronCLEANFILES = $(font_DATA) 3207b5fefc8SmrgEXTRA_DIST = $(BDF_FILES) README.md 3212227fc13SmrgMAINTAINERCLEANFILES = ChangeLog INSTALL 322644fc5c1Stronall: all-am 323644fc5c1Stron 324644fc5c1Stron.SUFFIXES: 3252227fc13Smrg.SUFFIXES: .bdf .pcf$(COMPRESS_SUFFIX) 3267b5fefc8Smrgam--refresh: Makefile 3272227fc13Smrg @: 3287b5fefc8Smrg$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) 3292227fc13Smrg @for dep in $?; do \ 3302227fc13Smrg case '$(am__configure_deps)' in \ 3312227fc13Smrg *$$dep*) \ 3322227fc13Smrg echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \ 3332227fc13Smrg $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \ 3342227fc13Smrg && exit 0; \ 3352227fc13Smrg exit 1;; \ 3362227fc13Smrg esac; \ 3372227fc13Smrg done; \ 3382227fc13Smrg echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \ 3392227fc13Smrg $(am__cd) $(top_srcdir) && \ 3402227fc13Smrg $(AUTOMAKE) --foreign Makefile 3412227fc13SmrgMakefile: $(srcdir)/Makefile.in $(top_builddir)/config.status 3422227fc13Smrg @case '$?' in \ 3432227fc13Smrg *config.status*) \ 3442227fc13Smrg echo ' $(SHELL) ./config.status'; \ 3452227fc13Smrg $(SHELL) ./config.status;; \ 3462227fc13Smrg *) \ 3477b5fefc8Smrg echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles)'; \ 3487b5fefc8Smrg cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles);; \ 3492227fc13Smrg esac; 3502227fc13Smrg 3512227fc13Smrg$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) 352644fc5c1Stron $(SHELL) ./config.status --recheck 353644fc5c1Stron 3547b5fefc8Smrg$(top_srcdir)/configure: $(am__configure_deps) 3552227fc13Smrg $(am__cd) $(srcdir) && $(AUTOCONF) 3567b5fefc8Smrg$(ACLOCAL_M4): $(am__aclocal_m4_deps) 3572227fc13Smrg $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) 3582227fc13Smrg$(am__aclocal_m4_deps): 359644fc5c1Stroninstall-fontDATA: $(font_DATA) 360644fc5c1Stron @$(NORMAL_INSTALL) 3612227fc13Smrg @list='$(font_DATA)'; test -n "$(fontdir)" || list=; \ 3627b5fefc8Smrg if test -n "$$list"; then \ 3637b5fefc8Smrg echo " $(MKDIR_P) '$(DESTDIR)$(fontdir)'"; \ 3647b5fefc8Smrg $(MKDIR_P) "$(DESTDIR)$(fontdir)" || exit 1; \ 3657b5fefc8Smrg fi; \ 3662227fc13Smrg for p in $$list; do \ 367644fc5c1Stron if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ 3682227fc13Smrg echo "$$d$$p"; \ 3692227fc13Smrg done | $(am__base_list) | \ 3702227fc13Smrg while read files; do \ 3712227fc13Smrg echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(fontdir)'"; \ 3722227fc13Smrg $(INSTALL_DATA) $$files "$(DESTDIR)$(fontdir)" || exit $$?; \ 373644fc5c1Stron done 374644fc5c1Stron 375644fc5c1Stronuninstall-fontDATA: 376644fc5c1Stron @$(NORMAL_UNINSTALL) 3772227fc13Smrg @list='$(font_DATA)'; test -n "$(fontdir)" || list=; \ 3782227fc13Smrg files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ 3797b5fefc8Smrg dir='$(DESTDIR)$(fontdir)'; $(am__uninstall_files_from_dir) 3807b5fefc8Smrgtags TAGS: 3817b5fefc8Smrg 3827b5fefc8Smrgctags CTAGS: 383644fc5c1Stron 3847b5fefc8Smrgcscope cscopelist: 385644fc5c1Stron 3867b5fefc8Smrgdistdir: $(BUILT_SOURCES) 3877b5fefc8Smrg $(MAKE) $(AM_MAKEFLAGS) distdir-am 388644fc5c1Stron 3897b5fefc8Smrgdistdir-am: $(DISTFILES) 390644fc5c1Stron $(am__remove_distdir) 3912227fc13Smrg test -d "$(distdir)" || mkdir "$(distdir)" 3922227fc13Smrg @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ 3932227fc13Smrg topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ 3942227fc13Smrg list='$(DISTFILES)'; \ 3952227fc13Smrg dist_files=`for file in $$list; do echo $$file; done | \ 3962227fc13Smrg sed -e "s|^$$srcdirstrip/||;t" \ 3972227fc13Smrg -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ 3982227fc13Smrg case $$dist_files in \ 3992227fc13Smrg */*) $(MKDIR_P) `echo "$$dist_files" | \ 4002227fc13Smrg sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ 4012227fc13Smrg sort -u` ;; \ 4022227fc13Smrg esac; \ 4032227fc13Smrg for file in $$dist_files; do \ 404644fc5c1Stron if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ 405644fc5c1Stron if test -d $$d/$$file; then \ 4062227fc13Smrg dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ 4072227fc13Smrg if test -d "$(distdir)/$$file"; then \ 4082227fc13Smrg find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ 4092227fc13Smrg fi; \ 410644fc5c1Stron if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ 4112227fc13Smrg cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ 4122227fc13Smrg find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ 413644fc5c1Stron fi; \ 4142227fc13Smrg cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ 415644fc5c1Stron else \ 4162227fc13Smrg test -f "$(distdir)/$$file" \ 4172227fc13Smrg || cp -p $$d/$$file "$(distdir)/$$file" \ 418644fc5c1Stron || exit 1; \ 419644fc5c1Stron fi; \ 420644fc5c1Stron done 4212227fc13Smrg $(MAKE) $(AM_MAKEFLAGS) \ 4222227fc13Smrg top_distdir="$(top_distdir)" distdir="$(distdir)" \ 4232227fc13Smrg dist-hook 4242227fc13Smrg -test -n "$(am__skip_mode_fix)" \ 4252227fc13Smrg || find "$(distdir)" -type d ! -perm -755 \ 4262227fc13Smrg -exec chmod u+rwx,go+rx {} \; -o \ 427644fc5c1Stron ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ 428644fc5c1Stron ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ 4292227fc13Smrg ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ 4302227fc13Smrg || chmod -R a+r "$(distdir)" 431644fc5c1Strondist-gzip: distdir 4327b5fefc8Smrg tardir=$(distdir) && $(am__tar) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).tar.gz 4337b5fefc8Smrg $(am__post_remove_distdir) 4342227fc13Smrg 4357b5fefc8Smrgdist-bzip2: distdir 4367b5fefc8Smrg tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2 4377b5fefc8Smrg $(am__post_remove_distdir) 4382227fc13Smrg 4397b5fefc8Smrgdist-lzip: distdir 4407b5fefc8Smrg tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz 4417b5fefc8Smrg $(am__post_remove_distdir) 4422227fc13Smrgdist-xz: distdir 4437b5fefc8Smrg tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz 4447b5fefc8Smrg $(am__post_remove_distdir) 4457b5fefc8Smrg 4467b5fefc8Smrgdist-zstd: distdir 4477b5fefc8Smrg tardir=$(distdir) && $(am__tar) | zstd -c $${ZSTD_CLEVEL-$${ZSTD_OPT--19}} >$(distdir).tar.zst 4487b5fefc8Smrg $(am__post_remove_distdir) 4492227fc13Smrg 4502227fc13Smrgdist-tarZ: distdir 4517b5fefc8Smrg @echo WARNING: "Support for distribution archives compressed with" \ 4527b5fefc8Smrg "legacy program 'compress' is deprecated." >&2 4537b5fefc8Smrg @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 4542227fc13Smrg tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z 4557b5fefc8Smrg $(am__post_remove_distdir) 4562227fc13Smrg 4572227fc13Smrgdist-shar: distdir 4587b5fefc8Smrg @echo WARNING: "Support for shar distribution archives is" \ 4597b5fefc8Smrg "deprecated." >&2 4607b5fefc8Smrg @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 4617b5fefc8Smrg shar $(distdir) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).shar.gz 4627b5fefc8Smrg $(am__post_remove_distdir) 4632227fc13Smrg 4642227fc13Smrgdist-zip: distdir 4652227fc13Smrg -rm -f $(distdir).zip 4662227fc13Smrg zip -rq $(distdir).zip $(distdir) 4677b5fefc8Smrg $(am__post_remove_distdir) 468644fc5c1Stron 4697b5fefc8Smrgdist dist-all: 4707b5fefc8Smrg $(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:' 4717b5fefc8Smrg $(am__post_remove_distdir) 472644fc5c1Stron 473644fc5c1Stron# This target untars the dist file and tries a VPATH configuration. Then 474644fc5c1Stron# it guarantees that the distribution is self-contained by making another 475644fc5c1Stron# tarfile. 476644fc5c1Strondistcheck: dist 4772227fc13Smrg case '$(DIST_ARCHIVES)' in \ 4782227fc13Smrg *.tar.gz*) \ 4797b5fefc8Smrg eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).tar.gz | $(am__untar) ;;\ 4802227fc13Smrg *.tar.bz2*) \ 4812227fc13Smrg bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ 4827b5fefc8Smrg *.tar.lz*) \ 4837b5fefc8Smrg lzip -dc $(distdir).tar.lz | $(am__untar) ;;\ 4842227fc13Smrg *.tar.xz*) \ 4852227fc13Smrg xz -dc $(distdir).tar.xz | $(am__untar) ;;\ 4862227fc13Smrg *.tar.Z*) \ 4872227fc13Smrg uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ 4882227fc13Smrg *.shar.gz*) \ 4897b5fefc8Smrg eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).shar.gz | unshar ;;\ 4902227fc13Smrg *.zip*) \ 4912227fc13Smrg unzip $(distdir).zip ;;\ 4927b5fefc8Smrg *.tar.zst*) \ 4937b5fefc8Smrg zstd -dc $(distdir).tar.zst | $(am__untar) ;;\ 4942227fc13Smrg esac 4957b5fefc8Smrg chmod -R a-w $(distdir) 4967b5fefc8Smrg chmod u+w $(distdir) 4977b5fefc8Smrg mkdir $(distdir)/_build $(distdir)/_build/sub $(distdir)/_inst 498644fc5c1Stron chmod a-w $(distdir) 4992227fc13Smrg test -d $(distdir)/_build || exit 0; \ 500644fc5c1Stron dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ 501644fc5c1Stron && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ 5022227fc13Smrg && am__cwd=`pwd` \ 5037b5fefc8Smrg && $(am__cd) $(distdir)/_build/sub \ 5047b5fefc8Smrg && ../../configure \ 5057b5fefc8Smrg $(AM_DISTCHECK_CONFIGURE_FLAGS) \ 506644fc5c1Stron $(DISTCHECK_CONFIGURE_FLAGS) \ 5077b5fefc8Smrg --srcdir=../.. --prefix="$$dc_install_base" \ 508644fc5c1Stron && $(MAKE) $(AM_MAKEFLAGS) \ 5097b5fefc8Smrg && $(MAKE) $(AM_MAKEFLAGS) $(AM_DISTCHECK_DVI_TARGET) \ 510644fc5c1Stron && $(MAKE) $(AM_MAKEFLAGS) check \ 511644fc5c1Stron && $(MAKE) $(AM_MAKEFLAGS) install \ 512644fc5c1Stron && $(MAKE) $(AM_MAKEFLAGS) installcheck \ 513644fc5c1Stron && $(MAKE) $(AM_MAKEFLAGS) uninstall \ 514644fc5c1Stron && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ 515644fc5c1Stron distuninstallcheck \ 516644fc5c1Stron && chmod -R a-w "$$dc_install_base" \ 517644fc5c1Stron && ({ \ 5182227fc13Smrg (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ 519644fc5c1Stron && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ 520644fc5c1Stron && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ 521644fc5c1Stron && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ 522644fc5c1Stron distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ 523644fc5c1Stron } || { rm -rf "$$dc_destdir"; exit 1; }) \ 524644fc5c1Stron && rm -rf "$$dc_destdir" \ 5252227fc13Smrg && $(MAKE) $(AM_MAKEFLAGS) dist \ 5262227fc13Smrg && rm -rf $(DIST_ARCHIVES) \ 5272227fc13Smrg && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \ 5282227fc13Smrg && cd "$$am__cwd" \ 5292227fc13Smrg || exit 1 5307b5fefc8Smrg $(am__post_remove_distdir) 5312227fc13Smrg @(echo "$(distdir) archives ready for distribution: "; \ 5322227fc13Smrg list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ 5332227fc13Smrg sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' 534644fc5c1Strondistcleancheck: distclean 535644fc5c1Stron @if test '$(srcdir)' = . ; then \ 536644fc5c1Stron echo "ERROR: distcleancheck can only run from a VPATH build" ; \ 537644fc5c1Stron exit 1 ; \ 538644fc5c1Stron fi 539644fc5c1Stron @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ 540644fc5c1Stron || { echo "ERROR: files left in build directory after distclean:" ; \ 541644fc5c1Stron $(distcleancheck_listfiles) ; \ 542644fc5c1Stron exit 1; } >&2 543644fc5c1Stroncheck-am: all-am 544644fc5c1Stroncheck: check-am 545644fc5c1Stronall-am: Makefile $(DATA) 546644fc5c1Stroninstalldirs: 5472227fc13Smrg for dir in "$(DESTDIR)$(fontdir)"; do \ 5482227fc13Smrg test -z "$$dir" || $(MKDIR_P) "$$dir"; \ 5492227fc13Smrg done 550644fc5c1Stroninstall: install-am 551644fc5c1Stroninstall-exec: install-exec-am 552644fc5c1Stroninstall-data: install-data-am 553644fc5c1Stronuninstall: uninstall-am 554644fc5c1Stron 555644fc5c1Stroninstall-am: all-am 556644fc5c1Stron @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am 557644fc5c1Stron 558644fc5c1Stroninstallcheck: installcheck-am 559644fc5c1Stroninstall-strip: 5607b5fefc8Smrg if test -z '$(STRIP)'; then \ 5617b5fefc8Smrg $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ 5627b5fefc8Smrg install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ 5637b5fefc8Smrg install; \ 5647b5fefc8Smrg else \ 5657b5fefc8Smrg $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ 5667b5fefc8Smrg install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ 5677b5fefc8Smrg "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ 5687b5fefc8Smrg fi 569644fc5c1Stronmostlyclean-generic: 570644fc5c1Stron 571644fc5c1Stronclean-generic: 572644fc5c1Stron -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) 573644fc5c1Stron 574644fc5c1Strondistclean-generic: 5752227fc13Smrg -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) 5762227fc13Smrg -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) 577644fc5c1Stron 578644fc5c1Stronmaintainer-clean-generic: 579644fc5c1Stron @echo "This command is intended for maintainers to use" 580644fc5c1Stron @echo "it deletes files that may require special tools to rebuild." 5812227fc13Smrg -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) 582644fc5c1Stronclean: clean-am 583644fc5c1Stron 584644fc5c1Stronclean-am: clean-generic mostlyclean-am 585644fc5c1Stron 586644fc5c1Strondistclean: distclean-am 587644fc5c1Stron -rm -f $(am__CONFIG_DISTCLEAN_FILES) 588644fc5c1Stron -rm -f Makefile 589644fc5c1Strondistclean-am: clean-am distclean-generic 590644fc5c1Stron 591644fc5c1Strondvi: dvi-am 592644fc5c1Stron 593644fc5c1Strondvi-am: 594644fc5c1Stron 5952227fc13Smrghtml: html-am 5962227fc13Smrg 5972227fc13Smrghtml-am: 5982227fc13Smrg 599644fc5c1Stroninfo: info-am 600644fc5c1Stron 601644fc5c1Stroninfo-am: 602644fc5c1Stron 603644fc5c1Stroninstall-data-am: install-fontDATA 604644fc5c1Stron @$(NORMAL_INSTALL) 605644fc5c1Stron $(MAKE) $(AM_MAKEFLAGS) install-data-hook 6062227fc13Smrginstall-dvi: install-dvi-am 6072227fc13Smrg 6082227fc13Smrginstall-dvi-am: 609644fc5c1Stron 610644fc5c1Stroninstall-exec-am: 611644fc5c1Stron 6122227fc13Smrginstall-html: install-html-am 6132227fc13Smrg 6142227fc13Smrginstall-html-am: 6152227fc13Smrg 616644fc5c1Stroninstall-info: install-info-am 617644fc5c1Stron 6182227fc13Smrginstall-info-am: 6192227fc13Smrg 620644fc5c1Stroninstall-man: 621644fc5c1Stron 6222227fc13Smrginstall-pdf: install-pdf-am 6232227fc13Smrg 6242227fc13Smrginstall-pdf-am: 6252227fc13Smrg 6262227fc13Smrginstall-ps: install-ps-am 6272227fc13Smrg 6282227fc13Smrginstall-ps-am: 6292227fc13Smrg 630644fc5c1Stroninstallcheck-am: 631644fc5c1Stron 632644fc5c1Stronmaintainer-clean: maintainer-clean-am 633644fc5c1Stron -rm -f $(am__CONFIG_DISTCLEAN_FILES) 634644fc5c1Stron -rm -rf $(top_srcdir)/autom4te.cache 635644fc5c1Stron -rm -f Makefile 636644fc5c1Stronmaintainer-clean-am: distclean-am maintainer-clean-generic 637644fc5c1Stron 638644fc5c1Stronmostlyclean: mostlyclean-am 639644fc5c1Stron 640644fc5c1Stronmostlyclean-am: mostlyclean-generic 641644fc5c1Stron 642644fc5c1Stronpdf: pdf-am 643644fc5c1Stron 644644fc5c1Stronpdf-am: 645644fc5c1Stron 646644fc5c1Stronps: ps-am 647644fc5c1Stron 648644fc5c1Stronps-am: 649644fc5c1Stron 6502227fc13Smrguninstall-am: uninstall-fontDATA 6512227fc13Smrg 6522227fc13Smrg.MAKE: install-am install-data-am install-strip 653644fc5c1Stron 6547b5fefc8Smrg.PHONY: all all-am am--refresh check check-am clean clean-generic \ 6557b5fefc8Smrg cscopelist-am ctags-am dist dist-all dist-bzip2 dist-gzip \ 6567b5fefc8Smrg dist-hook dist-lzip dist-shar dist-tarZ dist-xz dist-zip \ 6577b5fefc8Smrg dist-zstd distcheck distclean distclean-generic distcleancheck \ 6587b5fefc8Smrg distdir distuninstallcheck dvi dvi-am html html-am info \ 6597b5fefc8Smrg info-am install install-am install-data install-data-am \ 6607b5fefc8Smrg install-data-hook install-dvi install-dvi-am install-exec \ 6617b5fefc8Smrg install-exec-am install-fontDATA install-html install-html-am \ 6627b5fefc8Smrg install-info install-info-am install-man install-pdf \ 6637b5fefc8Smrg install-pdf-am install-ps install-ps-am install-strip \ 6647b5fefc8Smrg installcheck installcheck-am installdirs maintainer-clean \ 6657b5fefc8Smrg maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ 6667b5fefc8Smrg pdf-am ps ps-am tags-am uninstall uninstall-am \ 6677b5fefc8Smrg uninstall-fontDATA 6687b5fefc8Smrg 6697b5fefc8Smrg.PRECIOUS: Makefile 670644fc5c1Stron 671644fc5c1Stron 6722227fc13Smrg.bdf.pcf$(COMPRESS_SUFFIX): 673644fc5c1Stron @rm -f $@ 6747b5fefc8Smrg $(AM_V_GEN)$(BDFTOPCF) -t $< | $(COMPRESS) $(COMPRESS_FLAGS) > $@ 675644fc5c1Stron 676644fc5c1Stroninstall-data-hook: 6777b5fefc8Smrg @rm -f $(DESTDIR)$(fontdir)/fonts.dir 678644fc5c1Stron $(MKFONTDIR) $(DESTDIR)$(fontdir) 6792227fc13Smrg @RUN_FCCACHE@ 680644fc5c1Stron 681644fc5c1Strondistuninstallcheck: 682644fc5c1Stron @: 6832227fc13Smrg 6842227fc13Smrg.PHONY: ChangeLog INSTALL 6852227fc13Smrg 6862227fc13SmrgINSTALL: 6872227fc13Smrg $(INSTALL_CMD) 6882227fc13Smrg 6892227fc13SmrgChangeLog: 6902227fc13Smrg $(CHANGELOG_CMD) 6912227fc13Smrg 6922227fc13Smrgdist-hook: ChangeLog INSTALL 6932227fc13Smrg 694644fc5c1Stron# Tell versions [3.59,3.63) of GNU make to not export all variables. 695644fc5c1Stron# Otherwise a system limit (for SysV at least) may be exceeded. 696644fc5c1Stron.NOEXPORT: 697