Makefile.in 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513
  1. # Makefile.in generated by automake 1.15 from Makefile.am.
  2. # @configure_input@
  3. # Copyright (C) 1994-2014 Free Software Foundation, Inc.
  4. # This Makefile.in is free software; the Free Software Foundation
  5. # gives unlimited permission to copy and/or distribute it,
  6. # with or without modifications, as long as this notice is preserved.
  7. # This program is distributed in the hope that it will be useful,
  8. # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
  9. # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
  10. # PARTICULAR PURPOSE.
  11. @SET_MAKE@
  12. # FLAC - Free Lossless Audio Codec
  13. # Copyright (C) 2006-2009 Josh Coalson
  14. # Copyright (C) 2011-2016 Xiph.Org Foundation
  15. #
  16. # This file is part the FLAC project. FLAC is comprised of several
  17. # components distributed under different licenses. The codec libraries
  18. # are distributed under Xiph.Org's BSD-like license (see the file
  19. # COPYING.Xiph in this distribution). All other programs, libraries, and
  20. # plugins are distributed under the GPL (see COPYING.GPL). The documentation
  21. # is distributed under the Gnu FDL (see COPYING.FDL). Each file in the
  22. # FLAC distribution contains at the top the terms under which it may be
  23. # distributed.
  24. #
  25. # Since this particular file is relevant to all components of FLAC,
  26. # it may be distributed under the Xiph.Org license, which is the least
  27. # restrictive of those mentioned above. See the file COPYING.Xiph in this
  28. # distribution.
  29. VPATH = @srcdir@
  30. am__is_gnu_make = { \
  31. if test -z '$(MAKELEVEL)'; then \
  32. false; \
  33. elif test -n '$(MAKE_HOST)'; then \
  34. true; \
  35. elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
  36. true; \
  37. else \
  38. false; \
  39. fi; \
  40. }
  41. am__make_running_with_option = \
  42. case $${target_option-} in \
  43. ?) ;; \
  44. *) echo "am__make_running_with_option: internal error: invalid" \
  45. "target option '$${target_option-}' specified" >&2; \
  46. exit 1;; \
  47. esac; \
  48. has_opt=no; \
  49. sane_makeflags=$$MAKEFLAGS; \
  50. if $(am__is_gnu_make); then \
  51. sane_makeflags=$$MFLAGS; \
  52. else \
  53. case $$MAKEFLAGS in \
  54. *\\[\ \ ]*) \
  55. bs=\\; \
  56. sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
  57. | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
  58. esac; \
  59. fi; \
  60. skip_next=no; \
  61. strip_trailopt () \
  62. { \
  63. flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
  64. }; \
  65. for flg in $$sane_makeflags; do \
  66. test $$skip_next = yes && { skip_next=no; continue; }; \
  67. case $$flg in \
  68. *=*|--*) continue;; \
  69. -*I) strip_trailopt 'I'; skip_next=yes;; \
  70. -*I?*) strip_trailopt 'I';; \
  71. -*O) strip_trailopt 'O'; skip_next=yes;; \
  72. -*O?*) strip_trailopt 'O';; \
  73. -*l) strip_trailopt 'l'; skip_next=yes;; \
  74. -*l?*) strip_trailopt 'l';; \
  75. -[dEDm]) skip_next=yes;; \
  76. -[JT]) skip_next=yes;; \
  77. esac; \
  78. case $$flg in \
  79. *$$target_option*) has_opt=yes; break;; \
  80. esac; \
  81. done; \
  82. test $$has_opt = yes
  83. am__make_dryrun = (target_option=n; $(am__make_running_with_option))
  84. am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
  85. pkgdatadir = $(datadir)/@PACKAGE@
  86. pkgincludedir = $(includedir)/@PACKAGE@
  87. pkglibdir = $(libdir)/@PACKAGE@
  88. pkglibexecdir = $(libexecdir)/@PACKAGE@
  89. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
  90. install_sh_DATA = $(install_sh) -c -m 644
  91. install_sh_PROGRAM = $(install_sh) -c
  92. install_sh_SCRIPT = $(install_sh) -c
  93. INSTALL_HEADER = $(INSTALL_DATA)
  94. transform = $(program_transform_name)
  95. NORMAL_INSTALL = :
  96. PRE_INSTALL = :
  97. POST_INSTALL = :
  98. NORMAL_UNINSTALL = :
  99. PRE_UNINSTALL = :
  100. POST_UNINSTALL = :
  101. build_triplet = @build@
  102. host_triplet = @host@
  103. subdir = test/pictures
  104. ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
  105. am__aclocal_m4_deps = $(top_srcdir)/m4/add_cflags.m4 \
  106. $(top_srcdir)/m4/add_cxxflags.m4 $(top_srcdir)/m4/bswap.m4 \
  107. $(top_srcdir)/m4/clang.m4 $(top_srcdir)/m4/codeset.m4 \
  108. $(top_srcdir)/m4/gcc_version.m4 $(top_srcdir)/m4/iconv.m4 \
  109. $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \
  110. $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libtool.m4 \
  111. $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
  112. $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
  113. $(top_srcdir)/m4/ogg.m4 $(top_srcdir)/m4/really_gcc.m4 \
  114. $(top_srcdir)/m4/stack_protect.m4 $(top_srcdir)/m4/xmms.m4 \
  115. $(top_srcdir)/configure.ac
  116. am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
  117. $(ACLOCAL_M4)
  118. DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
  119. mkinstalldirs = $(install_sh) -d
  120. CONFIG_HEADER = $(top_builddir)/config.h
  121. CONFIG_CLEAN_FILES =
  122. CONFIG_CLEAN_VPATH_FILES =
  123. AM_V_P = $(am__v_P_@AM_V@)
  124. am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
  125. am__v_P_0 = false
  126. am__v_P_1 = :
  127. AM_V_GEN = $(am__v_GEN_@AM_V@)
  128. am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
  129. am__v_GEN_0 = @echo " GEN " $@;
  130. am__v_GEN_1 =
  131. AM_V_at = $(am__v_at_@AM_V@)
  132. am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
  133. am__v_at_0 = @
  134. am__v_at_1 =
  135. SOURCES =
  136. DIST_SOURCES =
  137. am__can_run_installinfo = \
  138. case $$AM_UPDATE_INFO_DIR in \
  139. n|no|NO) false;; \
  140. *) (install-info --version) >/dev/null 2>&1;; \
  141. esac
  142. am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
  143. am__DIST_COMMON = $(srcdir)/Makefile.in
  144. DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
  145. ACLOCAL = @ACLOCAL@
  146. AMTAR = @AMTAR@
  147. AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
  148. AR = @AR@
  149. AS = @AS@
  150. AUTOCONF = @AUTOCONF@
  151. AUTOHEADER = @AUTOHEADER@
  152. AUTOMAKE = @AUTOMAKE@
  153. AWK = @AWK@
  154. CC = @CC@
  155. CCAS = @CCAS@
  156. CCASDEPMODE = @CCASDEPMODE@
  157. CCASFLAGS = @CCASFLAGS@
  158. CCDEPMODE = @CCDEPMODE@
  159. CFLAGS = @CFLAGS@
  160. CPP = @CPP@
  161. CPPFLAGS = @CPPFLAGS@
  162. CXX = @CXX@
  163. CXXCPP = @CXXCPP@
  164. CXXDEPMODE = @CXXDEPMODE@
  165. CXXFLAGS = @CXXFLAGS@
  166. CYGPATH_W = @CYGPATH_W@
  167. DEFS = @DEFS@
  168. DEPDIR = @DEPDIR@
  169. DLLTOOL = @DLLTOOL@
  170. DOCBOOK_TO_MAN = @DOCBOOK_TO_MAN@
  171. DOXYGEN = @DOXYGEN@
  172. DSYMUTIL = @DSYMUTIL@
  173. DUMPBIN = @DUMPBIN@
  174. ECHO_C = @ECHO_C@
  175. ECHO_N = @ECHO_N@
  176. ECHO_T = @ECHO_T@
  177. EGREP = @EGREP@
  178. ENABLE_64_BIT_WORDS = @ENABLE_64_BIT_WORDS@
  179. EXEEXT = @EXEEXT@
  180. FGREP = @FGREP@
  181. FLAC__HAS_OGG = @FLAC__HAS_OGG@
  182. FLAC__TEST_LEVEL = @FLAC__TEST_LEVEL@
  183. FLAC__TEST_WITH_VALGRIND = @FLAC__TEST_WITH_VALGRIND@
  184. GCC_MAJOR_VERSION = @GCC_MAJOR_VERSION@
  185. GCC_MINOR_VERSION = @GCC_MINOR_VERSION@
  186. GCC_VERSION = @GCC_VERSION@
  187. GREP = @GREP@
  188. INSTALL = @INSTALL@
  189. INSTALL_DATA = @INSTALL_DATA@
  190. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  191. INSTALL_SCRIPT = @INSTALL_SCRIPT@
  192. INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
  193. LD = @LD@
  194. LDFLAGS = @LDFLAGS@
  195. LIBICONV = @LIBICONV@
  196. LIBOBJS = @LIBOBJS@
  197. LIBS = @LIBS@
  198. LIBTOOL = @LIBTOOL@
  199. LIB_CLOCK_GETTIME = @LIB_CLOCK_GETTIME@
  200. LIPO = @LIPO@
  201. LN_S = @LN_S@
  202. LTLIBICONV = @LTLIBICONV@
  203. LTLIBOBJS = @LTLIBOBJS@
  204. LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
  205. MAKEINFO = @MAKEINFO@
  206. MANIFEST_TOOL = @MANIFEST_TOOL@
  207. MKDIR_P = @MKDIR_P@
  208. NASM = @NASM@
  209. NM = @NM@
  210. NMEDIT = @NMEDIT@
  211. OBJDUMP = @OBJDUMP@
  212. OBJEXT = @OBJEXT@
  213. OBJ_FORMAT = @OBJ_FORMAT@
  214. OGG_CFLAGS = @OGG_CFLAGS@
  215. OGG_LIBS = @OGG_LIBS@
  216. OGG_PACKAGE = @OGG_PACKAGE@
  217. OTOOL = @OTOOL@
  218. OTOOL64 = @OTOOL64@
  219. PACKAGE = @PACKAGE@
  220. PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
  221. PACKAGE_NAME = @PACKAGE_NAME@
  222. PACKAGE_STRING = @PACKAGE_STRING@
  223. PACKAGE_TARNAME = @PACKAGE_TARNAME@
  224. PACKAGE_URL = @PACKAGE_URL@
  225. PACKAGE_VERSION = @PACKAGE_VERSION@
  226. PATH_SEPARATOR = @PATH_SEPARATOR@
  227. RANLIB = @RANLIB@
  228. SED = @SED@
  229. SET_MAKE = @SET_MAKE@
  230. SHELL = @SHELL@
  231. STRIP = @STRIP@
  232. VERSION = @VERSION@
  233. XMMS_CFLAGS = @XMMS_CFLAGS@
  234. XMMS_CONFIG = @XMMS_CONFIG@
  235. XMMS_DATA_DIR = @XMMS_DATA_DIR@
  236. XMMS_EFFECT_PLUGIN_DIR = @XMMS_EFFECT_PLUGIN_DIR@
  237. XMMS_GENERAL_PLUGIN_DIR = @XMMS_GENERAL_PLUGIN_DIR@
  238. XMMS_INPUT_PLUGIN_DIR = @XMMS_INPUT_PLUGIN_DIR@
  239. XMMS_LIBS = @XMMS_LIBS@
  240. XMMS_OUTPUT_PLUGIN_DIR = @XMMS_OUTPUT_PLUGIN_DIR@
  241. XMMS_PLUGIN_DIR = @XMMS_PLUGIN_DIR@
  242. XMMS_VERSION = @XMMS_VERSION@
  243. XMMS_VISUALIZATION_PLUGIN_DIR = @XMMS_VISUALIZATION_PLUGIN_DIR@
  244. abs_builddir = @abs_builddir@
  245. abs_srcdir = @abs_srcdir@
  246. abs_top_builddir = @abs_top_builddir@
  247. abs_top_srcdir = @abs_top_srcdir@
  248. ac_ct_AR = @ac_ct_AR@
  249. ac_ct_CC = @ac_ct_CC@
  250. ac_ct_CXX = @ac_ct_CXX@
  251. ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
  252. am__include = @am__include@
  253. am__leading_dot = @am__leading_dot@
  254. am__quote = @am__quote@
  255. am__tar = @am__tar@
  256. am__untar = @am__untar@
  257. bindir = @bindir@
  258. build = @build@
  259. build_alias = @build_alias@
  260. build_cpu = @build_cpu@
  261. build_os = @build_os@
  262. build_vendor = @build_vendor@
  263. builddir = @builddir@
  264. datadir = @datadir@
  265. datarootdir = @datarootdir@
  266. docdir = @docdir@
  267. dvidir = @dvidir@
  268. exec_prefix = @exec_prefix@
  269. host = @host@
  270. host_alias = @host_alias@
  271. host_cpu = @host_cpu@
  272. host_os = @host_os@
  273. host_vendor = @host_vendor@
  274. htmldir = @htmldir@
  275. includedir = @includedir@
  276. infodir = @infodir@
  277. install_sh = @install_sh@
  278. libdir = @libdir@
  279. libexecdir = @libexecdir@
  280. localedir = @localedir@
  281. localstatedir = @localstatedir@
  282. mandir = @mandir@
  283. mkdir_p = @mkdir_p@
  284. oldincludedir = @oldincludedir@
  285. pdfdir = @pdfdir@
  286. prefix = @prefix@
  287. program_transform_name = @program_transform_name@
  288. psdir = @psdir@
  289. runstatedir = @runstatedir@
  290. sbindir = @sbindir@
  291. sharedstatedir = @sharedstatedir@
  292. srcdir = @srcdir@
  293. sysconfdir = @sysconfdir@
  294. target_alias = @target_alias@
  295. top_build_prefix = @top_build_prefix@
  296. top_builddir = @top_builddir@
  297. top_srcdir = @top_srcdir@
  298. EXTRA_DIST = \
  299. 0.gif \
  300. 0.jpg \
  301. 0.png \
  302. 1.gif \
  303. 1.png \
  304. 2.gif \
  305. 2.png \
  306. 3.png \
  307. 4.jpg \
  308. 4.png \
  309. 5.png \
  310. 6.png \
  311. 7.png \
  312. 8.png
  313. all: all-am
  314. .SUFFIXES:
  315. $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
  316. @for dep in $?; do \
  317. case '$(am__configure_deps)' in \
  318. *$$dep*) \
  319. ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
  320. && { if test -f $@; then exit 0; else break; fi; }; \
  321. exit 1;; \
  322. esac; \
  323. done; \
  324. echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign test/pictures/Makefile'; \
  325. $(am__cd) $(top_srcdir) && \
  326. $(AUTOMAKE) --foreign test/pictures/Makefile
  327. Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  328. @case '$?' in \
  329. *config.status*) \
  330. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
  331. *) \
  332. echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
  333. cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
  334. esac;
  335. $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
  336. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  337. $(top_srcdir)/configure: $(am__configure_deps)
  338. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  339. $(ACLOCAL_M4): $(am__aclocal_m4_deps)
  340. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  341. $(am__aclocal_m4_deps):
  342. mostlyclean-libtool:
  343. -rm -f *.lo
  344. clean-libtool:
  345. -rm -rf .libs _libs
  346. tags TAGS:
  347. ctags CTAGS:
  348. cscope cscopelist:
  349. distdir: $(DISTFILES)
  350. @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  351. topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  352. list='$(DISTFILES)'; \
  353. dist_files=`for file in $$list; do echo $$file; done | \
  354. sed -e "s|^$$srcdirstrip/||;t" \
  355. -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
  356. case $$dist_files in \
  357. */*) $(MKDIR_P) `echo "$$dist_files" | \
  358. sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
  359. sort -u` ;; \
  360. esac; \
  361. for file in $$dist_files; do \
  362. if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
  363. if test -d $$d/$$file; then \
  364. dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
  365. if test -d "$(distdir)/$$file"; then \
  366. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  367. fi; \
  368. if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
  369. cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
  370. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  371. fi; \
  372. cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
  373. else \
  374. test -f "$(distdir)/$$file" \
  375. || cp -p $$d/$$file "$(distdir)/$$file" \
  376. || exit 1; \
  377. fi; \
  378. done
  379. check-am: all-am
  380. check: check-am
  381. all-am: Makefile
  382. installdirs:
  383. install: install-am
  384. install-exec: install-exec-am
  385. install-data: install-data-am
  386. uninstall: uninstall-am
  387. install-am: all-am
  388. @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
  389. installcheck: installcheck-am
  390. install-strip:
  391. if test -z '$(STRIP)'; then \
  392. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  393. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  394. install; \
  395. else \
  396. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  397. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  398. "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
  399. fi
  400. mostlyclean-generic:
  401. clean-generic:
  402. distclean-generic:
  403. -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
  404. -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
  405. maintainer-clean-generic:
  406. @echo "This command is intended for maintainers to use"
  407. @echo "it deletes files that may require special tools to rebuild."
  408. clean: clean-am
  409. clean-am: clean-generic clean-libtool mostlyclean-am
  410. distclean: distclean-am
  411. -rm -f Makefile
  412. distclean-am: clean-am distclean-generic
  413. dvi: dvi-am
  414. dvi-am:
  415. html: html-am
  416. html-am:
  417. info: info-am
  418. info-am:
  419. install-data-am:
  420. install-dvi: install-dvi-am
  421. install-dvi-am:
  422. install-exec-am:
  423. install-html: install-html-am
  424. install-html-am:
  425. install-info: install-info-am
  426. install-info-am:
  427. install-man:
  428. install-pdf: install-pdf-am
  429. install-pdf-am:
  430. install-ps: install-ps-am
  431. install-ps-am:
  432. installcheck-am:
  433. maintainer-clean: maintainer-clean-am
  434. -rm -f Makefile
  435. maintainer-clean-am: distclean-am maintainer-clean-generic
  436. mostlyclean: mostlyclean-am
  437. mostlyclean-am: mostlyclean-generic mostlyclean-libtool
  438. pdf: pdf-am
  439. pdf-am:
  440. ps: ps-am
  441. ps-am:
  442. uninstall-am:
  443. .MAKE: install-am install-strip
  444. .PHONY: all all-am check check-am clean clean-generic clean-libtool \
  445. cscopelist-am ctags-am distclean distclean-generic \
  446. distclean-libtool distdir dvi dvi-am html html-am info info-am \
  447. install install-am install-data install-data-am install-dvi \
  448. install-dvi-am install-exec install-exec-am install-html \
  449. install-html-am install-info install-info-am install-man \
  450. install-pdf install-pdf-am install-ps install-ps-am \
  451. install-strip installcheck installcheck-am installdirs \
  452. maintainer-clean maintainer-clean-generic mostlyclean \
  453. mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
  454. tags-am uninstall uninstall-am
  455. .PRECIOUS: Makefile
  456. # Tell versions [3.59,3.63) of GNU make to not export all variables.
  457. # Otherwise a system limit (for SysV at least) may be exceeded.
  458. .NOEXPORT: