Makefile.in 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574
  1. # Makefile.in generated by automake 1.11.1 from Makefile.am.
  2. # @configure_input@
  3. # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
  4. # 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,
  5. # 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. # This program is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
  11. # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
  12. # PARTICULAR PURPOSE.
  13. @SET_MAKE@
  14. #
  15. # ngIRCd -- The Next Generation IRC Daemon
  16. # Copyright (c)2001,2002 by Alexander Barton (alex@barton.de)
  17. #
  18. # This program is free software; you can redistribute it and/or modify
  19. # it under the terms of the GNU General Public License as published by
  20. # the Free Software Foundation; either version 2 of the License, or
  21. # (at your option) any later version.
  22. # Please read the file COPYING, README and AUTHORS for more information.
  23. #
  24. # $Id: Makefile.am,v 1.8 2008/02/26 22:04:15 fw Exp $
  25. #
  26. VPATH = @srcdir@
  27. pkgdatadir = $(datadir)/@PACKAGE@
  28. pkgincludedir = $(includedir)/@PACKAGE@
  29. pkglibdir = $(libdir)/@PACKAGE@
  30. pkglibexecdir = $(libexecdir)/@PACKAGE@
  31. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
  32. install_sh_DATA = $(install_sh) -c -m 644
  33. install_sh_PROGRAM = $(install_sh) -c
  34. install_sh_SCRIPT = $(install_sh) -c
  35. INSTALL_HEADER = $(INSTALL_DATA)
  36. transform = $(program_transform_name)
  37. NORMAL_INSTALL = :
  38. PRE_INSTALL = :
  39. POST_INSTALL = :
  40. NORMAL_UNINSTALL = :
  41. PRE_UNINSTALL = :
  42. POST_UNINSTALL = :
  43. build_triplet = @build@
  44. host_triplet = @host@
  45. subdir = src
  46. DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \
  47. $(srcdir)/config.h.in
  48. ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
  49. am__aclocal_m4_deps = $(top_srcdir)/configure.ac
  50. am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
  51. $(ACLOCAL_M4)
  52. mkinstalldirs = $(install_sh) -d
  53. CONFIG_HEADER = config.h
  54. CONFIG_CLEAN_FILES =
  55. CONFIG_CLEAN_VPATH_FILES =
  56. AM_V_GEN = $(am__v_GEN_$(V))
  57. am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
  58. am__v_GEN_0 = @echo " GEN " $@;
  59. AM_V_at = $(am__v_at_$(V))
  60. am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
  61. am__v_at_0 = @
  62. SOURCES =
  63. DIST_SOURCES =
  64. RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
  65. html-recursive info-recursive install-data-recursive \
  66. install-dvi-recursive install-exec-recursive \
  67. install-html-recursive install-info-recursive \
  68. install-pdf-recursive install-ps-recursive install-recursive \
  69. installcheck-recursive installdirs-recursive pdf-recursive \
  70. ps-recursive uninstall-recursive
  71. RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
  72. distclean-recursive maintainer-clean-recursive
  73. AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
  74. $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
  75. distdir
  76. ETAGS = etags
  77. CTAGS = ctags
  78. DIST_SUBDIRS = $(SUBDIRS)
  79. DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
  80. am__relativize = \
  81. dir0=`pwd`; \
  82. sed_first='s,^\([^/]*\)/.*$$,\1,'; \
  83. sed_rest='s,^[^/]*/*,,'; \
  84. sed_last='s,^.*/\([^/]*\)$$,\1,'; \
  85. sed_butlast='s,/*[^/]*$$,,'; \
  86. while test -n "$$dir1"; do \
  87. first=`echo "$$dir1" | sed -e "$$sed_first"`; \
  88. if test "$$first" != "."; then \
  89. if test "$$first" = ".."; then \
  90. dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
  91. dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
  92. else \
  93. first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
  94. if test "$$first2" = "$$first"; then \
  95. dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
  96. else \
  97. dir2="../$$dir2"; \
  98. fi; \
  99. dir0="$$dir0"/"$$first"; \
  100. fi; \
  101. fi; \
  102. dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
  103. done; \
  104. reldir="$$dir2"
  105. ACLOCAL = @ACLOCAL@
  106. AMTAR = @AMTAR@
  107. AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
  108. AUTOCONF = @AUTOCONF@
  109. AUTOHEADER = @AUTOHEADER@
  110. AUTOMAKE = @AUTOMAKE@
  111. AWK = @AWK@
  112. CC = @CC@
  113. CCDEPMODE = @CCDEPMODE@
  114. CFLAGS = @CFLAGS@
  115. CPP = @CPP@
  116. CPPFLAGS = @CPPFLAGS@
  117. CYGPATH_W = @CYGPATH_W@
  118. DEFS = @DEFS@
  119. DEPDIR = @DEPDIR@
  120. ECHO_C = @ECHO_C@
  121. ECHO_N = @ECHO_N@
  122. ECHO_T = @ECHO_T@
  123. EGREP = @EGREP@
  124. EXEEXT = @EXEEXT@
  125. GREP = @GREP@
  126. INSTALL = @INSTALL@
  127. INSTALL_DATA = @INSTALL_DATA@
  128. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  129. INSTALL_SCRIPT = @INSTALL_SCRIPT@
  130. INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
  131. LDFLAGS = @LDFLAGS@
  132. LIBOBJS = @LIBOBJS@
  133. LIBS = @LIBS@
  134. LN_S = @LN_S@
  135. LTLIBOBJS = @LTLIBOBJS@
  136. MAKEINFO = @MAKEINFO@
  137. MKDIR_P = @MKDIR_P@
  138. OBJEXT = @OBJEXT@
  139. PACKAGE = @PACKAGE@
  140. PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
  141. PACKAGE_NAME = @PACKAGE_NAME@
  142. PACKAGE_STRING = @PACKAGE_STRING@
  143. PACKAGE_TARNAME = @PACKAGE_TARNAME@
  144. PACKAGE_URL = @PACKAGE_URL@
  145. PACKAGE_VERSION = @PACKAGE_VERSION@
  146. PATH_SEPARATOR = @PATH_SEPARATOR@
  147. RANLIB = @RANLIB@
  148. SET_MAKE = @SET_MAKE@
  149. SHELL = @SHELL@
  150. STRIP = @STRIP@
  151. U = @U@
  152. VERSION = @VERSION@
  153. abs_builddir = @abs_builddir@
  154. abs_srcdir = @abs_srcdir@
  155. abs_top_builddir = @abs_top_builddir@
  156. abs_top_srcdir = @abs_top_srcdir@
  157. ac_ct_CC = @ac_ct_CC@
  158. am__include = @am__include@
  159. am__leading_dot = @am__leading_dot@
  160. am__quote = @am__quote@
  161. am__tar = @am__tar@
  162. am__untar = @am__untar@
  163. bindir = @bindir@
  164. build = @build@
  165. build_alias = @build_alias@
  166. build_cpu = @build_cpu@
  167. build_os = @build_os@
  168. build_vendor = @build_vendor@
  169. builddir = @builddir@
  170. datadir = @datadir@
  171. datarootdir = @datarootdir@
  172. docdir = @docdir@
  173. dvidir = @dvidir@
  174. exec_prefix = @exec_prefix@
  175. host = @host@
  176. host_alias = @host_alias@
  177. host_cpu = @host_cpu@
  178. host_os = @host_os@
  179. host_vendor = @host_vendor@
  180. htmldir = @htmldir@
  181. includedir = @includedir@
  182. infodir = @infodir@
  183. install_sh = @install_sh@
  184. libdir = @libdir@
  185. libexecdir = @libexecdir@
  186. localedir = @localedir@
  187. localstatedir = @localstatedir@
  188. mandir = @mandir@
  189. mkdir_p = @mkdir_p@
  190. oldincludedir = @oldincludedir@
  191. pdfdir = @pdfdir@
  192. prefix = @prefix@
  193. program_transform_name = @program_transform_name@
  194. psdir = @psdir@
  195. sbindir = @sbindir@
  196. sharedstatedir = @sharedstatedir@
  197. srcdir = @srcdir@
  198. sysconfdir = @sysconfdir@
  199. target_alias = @target_alias@
  200. top_build_prefix = @top_build_prefix@
  201. top_builddir = @top_builddir@
  202. top_srcdir = @top_srcdir@
  203. SUBDIRS = portab tool ipaddr ngircd testsuite
  204. all: config.h
  205. $(MAKE) $(AM_MAKEFLAGS) all-recursive
  206. .SUFFIXES:
  207. $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
  208. @for dep in $?; do \
  209. case '$(am__configure_deps)' in \
  210. *$$dep*) \
  211. ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
  212. && { if test -f $@; then exit 0; else break; fi; }; \
  213. exit 1;; \
  214. esac; \
  215. done; \
  216. echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/Makefile'; \
  217. $(am__cd) $(top_srcdir) && \
  218. $(AUTOMAKE) --gnu src/Makefile
  219. .PRECIOUS: Makefile
  220. Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  221. @case '$?' in \
  222. *config.status*) \
  223. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
  224. *) \
  225. echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
  226. cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
  227. esac;
  228. $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
  229. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  230. $(top_srcdir)/configure: $(am__configure_deps)
  231. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  232. $(ACLOCAL_M4): $(am__aclocal_m4_deps)
  233. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  234. $(am__aclocal_m4_deps):
  235. config.h: stamp-h1
  236. @if test ! -f $@; then \
  237. rm -f stamp-h1; \
  238. $(MAKE) $(AM_MAKEFLAGS) stamp-h1; \
  239. else :; fi
  240. stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
  241. @rm -f stamp-h1
  242. cd $(top_builddir) && $(SHELL) ./config.status src/config.h
  243. $(srcdir)/config.h.in: $(am__configure_deps)
  244. ($(am__cd) $(top_srcdir) && $(AUTOHEADER))
  245. rm -f stamp-h1
  246. touch $@
  247. distclean-hdr:
  248. -rm -f config.h stamp-h1
  249. # This directory's subdirectories are mostly independent; you can cd
  250. # into them and run `make' without going through this Makefile.
  251. # To change the values of `make' variables: instead of editing Makefiles,
  252. # (1) if the variable is set in `config.status', edit `config.status'
  253. # (which will cause the Makefiles to be regenerated when you run `make');
  254. # (2) otherwise, pass the desired values on the `make' command line.
  255. $(RECURSIVE_TARGETS):
  256. @fail= failcom='exit 1'; \
  257. for f in x $$MAKEFLAGS; do \
  258. case $$f in \
  259. *=* | --[!k]*);; \
  260. *k*) failcom='fail=yes';; \
  261. esac; \
  262. done; \
  263. dot_seen=no; \
  264. target=`echo $@ | sed s/-recursive//`; \
  265. list='$(SUBDIRS)'; for subdir in $$list; do \
  266. echo "Making $$target in $$subdir"; \
  267. if test "$$subdir" = "."; then \
  268. dot_seen=yes; \
  269. local_target="$$target-am"; \
  270. else \
  271. local_target="$$target"; \
  272. fi; \
  273. ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
  274. || eval $$failcom; \
  275. done; \
  276. if test "$$dot_seen" = "no"; then \
  277. $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
  278. fi; test -z "$$fail"
  279. $(RECURSIVE_CLEAN_TARGETS):
  280. @fail= failcom='exit 1'; \
  281. for f in x $$MAKEFLAGS; do \
  282. case $$f in \
  283. *=* | --[!k]*);; \
  284. *k*) failcom='fail=yes';; \
  285. esac; \
  286. done; \
  287. dot_seen=no; \
  288. case "$@" in \
  289. distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
  290. *) list='$(SUBDIRS)' ;; \
  291. esac; \
  292. rev=''; for subdir in $$list; do \
  293. if test "$$subdir" = "."; then :; else \
  294. rev="$$subdir $$rev"; \
  295. fi; \
  296. done; \
  297. rev="$$rev ."; \
  298. target=`echo $@ | sed s/-recursive//`; \
  299. for subdir in $$rev; do \
  300. echo "Making $$target in $$subdir"; \
  301. if test "$$subdir" = "."; then \
  302. local_target="$$target-am"; \
  303. else \
  304. local_target="$$target"; \
  305. fi; \
  306. ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
  307. || eval $$failcom; \
  308. done && test -z "$$fail"
  309. tags-recursive:
  310. list='$(SUBDIRS)'; for subdir in $$list; do \
  311. test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
  312. done
  313. ctags-recursive:
  314. list='$(SUBDIRS)'; for subdir in $$list; do \
  315. test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
  316. done
  317. ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
  318. list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
  319. unique=`for i in $$list; do \
  320. if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  321. done | \
  322. $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
  323. END { if (nonempty) { for (i in files) print i; }; }'`; \
  324. mkid -fID $$unique
  325. tags: TAGS
  326. TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
  327. $(TAGS_FILES) $(LISP)
  328. set x; \
  329. here=`pwd`; \
  330. if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
  331. include_option=--etags-include; \
  332. empty_fix=.; \
  333. else \
  334. include_option=--include; \
  335. empty_fix=; \
  336. fi; \
  337. list='$(SUBDIRS)'; for subdir in $$list; do \
  338. if test "$$subdir" = .; then :; else \
  339. test ! -f $$subdir/TAGS || \
  340. set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
  341. fi; \
  342. done; \
  343. list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
  344. unique=`for i in $$list; do \
  345. if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  346. done | \
  347. $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
  348. END { if (nonempty) { for (i in files) print i; }; }'`; \
  349. shift; \
  350. if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
  351. test -n "$$unique" || unique=$$empty_fix; \
  352. if test $$# -gt 0; then \
  353. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  354. "$$@" $$unique; \
  355. else \
  356. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  357. $$unique; \
  358. fi; \
  359. fi
  360. ctags: CTAGS
  361. CTAGS: ctags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
  362. $(TAGS_FILES) $(LISP)
  363. list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
  364. unique=`for i in $$list; do \
  365. if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  366. done | \
  367. $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
  368. END { if (nonempty) { for (i in files) print i; }; }'`; \
  369. test -z "$(CTAGS_ARGS)$$unique" \
  370. || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
  371. $$unique
  372. GTAGS:
  373. here=`$(am__cd) $(top_builddir) && pwd` \
  374. && $(am__cd) $(top_srcdir) \
  375. && gtags -i $(GTAGS_ARGS) "$$here"
  376. distclean-tags:
  377. -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
  378. distdir: $(DISTFILES)
  379. @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  380. topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  381. list='$(DISTFILES)'; \
  382. dist_files=`for file in $$list; do echo $$file; done | \
  383. sed -e "s|^$$srcdirstrip/||;t" \
  384. -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
  385. case $$dist_files in \
  386. */*) $(MKDIR_P) `echo "$$dist_files" | \
  387. sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
  388. sort -u` ;; \
  389. esac; \
  390. for file in $$dist_files; do \
  391. if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
  392. if test -d $$d/$$file; then \
  393. dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
  394. if test -d "$(distdir)/$$file"; then \
  395. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  396. fi; \
  397. if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
  398. cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
  399. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  400. fi; \
  401. cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
  402. else \
  403. test -f "$(distdir)/$$file" \
  404. || cp -p $$d/$$file "$(distdir)/$$file" \
  405. || exit 1; \
  406. fi; \
  407. done
  408. @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
  409. if test "$$subdir" = .; then :; else \
  410. test -d "$(distdir)/$$subdir" \
  411. || $(MKDIR_P) "$(distdir)/$$subdir" \
  412. || exit 1; \
  413. fi; \
  414. done
  415. @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
  416. if test "$$subdir" = .; then :; else \
  417. dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
  418. $(am__relativize); \
  419. new_distdir=$$reldir; \
  420. dir1=$$subdir; dir2="$(top_distdir)"; \
  421. $(am__relativize); \
  422. new_top_distdir=$$reldir; \
  423. echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
  424. echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
  425. ($(am__cd) $$subdir && \
  426. $(MAKE) $(AM_MAKEFLAGS) \
  427. top_distdir="$$new_top_distdir" \
  428. distdir="$$new_distdir" \
  429. am__remove_distdir=: \
  430. am__skip_length_check=: \
  431. am__skip_mode_fix=: \
  432. distdir) \
  433. || exit 1; \
  434. fi; \
  435. done
  436. check-am: all-am
  437. check: check-recursive
  438. all-am: Makefile config.h
  439. installdirs: installdirs-recursive
  440. installdirs-am:
  441. install: install-recursive
  442. install-exec: install-exec-recursive
  443. install-data: install-data-recursive
  444. uninstall: uninstall-recursive
  445. install-am: all-am
  446. @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
  447. installcheck: installcheck-recursive
  448. install-strip:
  449. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  450. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  451. `test -z '$(STRIP)' || \
  452. echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
  453. mostlyclean-generic:
  454. clean-generic:
  455. distclean-generic:
  456. -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
  457. -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
  458. maintainer-clean-generic:
  459. @echo "This command is intended for maintainers to use"
  460. @echo "it deletes files that may require special tools to rebuild."
  461. clean: clean-recursive
  462. clean-am: clean-generic mostlyclean-am
  463. distclean: distclean-recursive
  464. -rm -f Makefile
  465. distclean-am: clean-am distclean-generic distclean-hdr distclean-tags
  466. dvi: dvi-recursive
  467. dvi-am:
  468. html: html-recursive
  469. html-am:
  470. info: info-recursive
  471. info-am:
  472. install-data-am:
  473. install-dvi: install-dvi-recursive
  474. install-dvi-am:
  475. install-exec-am:
  476. install-html: install-html-recursive
  477. install-html-am:
  478. install-info: install-info-recursive
  479. install-info-am:
  480. install-man:
  481. install-pdf: install-pdf-recursive
  482. install-pdf-am:
  483. install-ps: install-ps-recursive
  484. install-ps-am:
  485. installcheck-am:
  486. maintainer-clean: maintainer-clean-recursive
  487. -rm -f Makefile
  488. maintainer-clean-am: distclean-am maintainer-clean-generic \
  489. maintainer-clean-local
  490. mostlyclean: mostlyclean-recursive
  491. mostlyclean-am: mostlyclean-generic
  492. pdf: pdf-recursive
  493. pdf-am:
  494. ps: ps-recursive
  495. ps-am:
  496. uninstall-am:
  497. .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) all \
  498. ctags-recursive install-am install-strip tags-recursive
  499. .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
  500. all all-am check check-am clean clean-generic ctags \
  501. ctags-recursive distclean distclean-generic distclean-hdr \
  502. distclean-tags distdir dvi dvi-am html html-am info info-am \
  503. install install-am install-data install-data-am install-dvi \
  504. install-dvi-am install-exec install-exec-am install-html \
  505. install-html-am install-info install-info-am install-man \
  506. install-pdf install-pdf-am install-ps install-ps-am \
  507. install-strip installcheck installcheck-am installdirs \
  508. installdirs-am maintainer-clean maintainer-clean-generic \
  509. maintainer-clean-local mostlyclean mostlyclean-generic pdf \
  510. pdf-am ps ps-am tags tags-recursive uninstall uninstall-am
  511. maintainer-clean-local:
  512. rm -f Makefile Makefile.in config.h config.h.in stamp-h.in
  513. # -eof-
  514. # Tell versions [3.59,3.63) of GNU make to not export all variables.
  515. # Otherwise a system limit (for SysV at least) may be exceeded.
  516. .NOEXPORT: