Makefile.in 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617
  1. # Makefile.in generated by automake 1.9.5 from Makefile.am.
  2. # @configure_input@
  3. # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
  4. # 2003, 2004, 2005 Free Software Foundation, Inc.
  5. # This Makefile.in is free software; the Free Software Foundation
  6. # gives unlimited permission to copy and/or distribute it,
  7. # with or without modifications, as long as this notice is preserved.
  8. # This program is distributed in the hope that it will be useful,
  9. # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
  10. # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
  11. # PARTICULAR PURPOSE.
  12. @SET_MAKE@
  13. #
  14. # ngIRCd -- The Next Generation IRC Daemon
  15. # Copyright (c)2001-2008 Alexander Barton (alex@barton.de)
  16. #
  17. # This program is free software; you can redistribute it and/or modify
  18. # it under the terms of the GNU General Public License as published by
  19. # the Free Software Foundation; either version 2 of the License, or
  20. # (at your option) any later version.
  21. # Please read the file COPYING, README and AUTHORS for more information.
  22. #
  23. srcdir = @srcdir@
  24. top_srcdir = @top_srcdir@
  25. VPATH = @srcdir@
  26. pkgdatadir = $(datadir)/@PACKAGE@
  27. pkglibdir = $(libdir)/@PACKAGE@
  28. pkgincludedir = $(includedir)/@PACKAGE@
  29. top_builddir = .
  30. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
  31. INSTALL = @INSTALL@
  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. target_triplet = @target@
  46. DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \
  47. $(srcdir)/Makefile.in $(top_srcdir)/configure AUTHORS COPYING \
  48. ChangeLog INSTALL NEWS config.guess config.sub depcomp \
  49. install-sh missing
  50. subdir = .
  51. ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
  52. am__aclocal_m4_deps = $(top_srcdir)/configure.in
  53. am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
  54. $(ACLOCAL_M4)
  55. am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
  56. configure.lineno configure.status.lineno
  57. mkinstalldirs = $(install_sh) -d
  58. CONFIG_HEADER = $(top_builddir)/src/config.h
  59. CONFIG_CLEAN_FILES =
  60. SOURCES =
  61. DIST_SOURCES =
  62. RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
  63. html-recursive info-recursive install-data-recursive \
  64. install-exec-recursive install-info-recursive \
  65. install-recursive installcheck-recursive installdirs-recursive \
  66. pdf-recursive ps-recursive uninstall-info-recursive \
  67. uninstall-recursive
  68. ETAGS = etags
  69. CTAGS = ctags
  70. DIST_SUBDIRS = $(SUBDIRS)
  71. DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
  72. distdir = $(PACKAGE)-$(VERSION)
  73. top_distdir = $(distdir)
  74. am__remove_distdir = \
  75. { test ! -d $(distdir) \
  76. || { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \
  77. && rm -fr $(distdir); }; }
  78. DIST_ARCHIVES = $(distdir).tar.gz
  79. GZIP_ENV = --best
  80. distuninstallcheck_listfiles = find . -type f -print
  81. distcleancheck_listfiles = find . -type f -print
  82. ACLOCAL = @ACLOCAL@
  83. AMDEP_FALSE = @AMDEP_FALSE@
  84. AMDEP_TRUE = @AMDEP_TRUE@
  85. AMTAR = @AMTAR@
  86. AUTOCONF = @AUTOCONF@
  87. AUTOHEADER = @AUTOHEADER@
  88. AUTOMAKE = @AUTOMAKE@
  89. AWK = @AWK@
  90. CC = @CC@
  91. CCDEPMODE = @CCDEPMODE@
  92. CFLAGS = @CFLAGS@
  93. CPP = @CPP@
  94. CPPFLAGS = @CPPFLAGS@
  95. CYGPATH_W = @CYGPATH_W@
  96. DEFS = @DEFS@
  97. DEPDIR = @DEPDIR@
  98. ECHO_C = @ECHO_C@
  99. ECHO_N = @ECHO_N@
  100. ECHO_T = @ECHO_T@
  101. EGREP = @EGREP@
  102. EXEEXT = @EXEEXT@
  103. INSTALL_DATA = @INSTALL_DATA@
  104. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  105. INSTALL_SCRIPT = @INSTALL_SCRIPT@
  106. INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
  107. LDFLAGS = @LDFLAGS@
  108. LIBOBJS = @LIBOBJS@
  109. LIBS = @LIBS@
  110. LN_S = @LN_S@
  111. LTLIBOBJS = @LTLIBOBJS@
  112. MAKEINFO = @MAKEINFO@
  113. OBJEXT = @OBJEXT@
  114. PACKAGE = @PACKAGE@
  115. PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
  116. PACKAGE_NAME = @PACKAGE_NAME@
  117. PACKAGE_STRING = @PACKAGE_STRING@
  118. PACKAGE_TARNAME = @PACKAGE_TARNAME@
  119. PACKAGE_VERSION = @PACKAGE_VERSION@
  120. PATH_SEPARATOR = @PATH_SEPARATOR@
  121. RANLIB = @RANLIB@
  122. SET_MAKE = @SET_MAKE@
  123. SHELL = @SHELL@
  124. STRIP = @STRIP@
  125. U = @U@
  126. VERSION = @VERSION@
  127. ac_ct_CC = @ac_ct_CC@
  128. ac_ct_RANLIB = @ac_ct_RANLIB@
  129. ac_ct_STRIP = @ac_ct_STRIP@
  130. am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  131. am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
  132. am__include = @am__include@
  133. am__leading_dot = @am__leading_dot@
  134. am__quote = @am__quote@
  135. am__tar = @am__tar@
  136. am__untar = @am__untar@
  137. bindir = @bindir@
  138. build = @build@
  139. build_alias = @build_alias@
  140. build_cpu = @build_cpu@
  141. build_os = @build_os@
  142. build_vendor = @build_vendor@
  143. datadir = @datadir@
  144. exec_prefix = @exec_prefix@
  145. host = @host@
  146. host_alias = @host_alias@
  147. host_cpu = @host_cpu@
  148. host_os = @host_os@
  149. host_vendor = @host_vendor@
  150. includedir = @includedir@
  151. infodir = @infodir@
  152. install_sh = @install_sh@
  153. libdir = @libdir@
  154. libexecdir = @libexecdir@
  155. localstatedir = @localstatedir@
  156. mandir = @mandir@
  157. mkdir_p = @mkdir_p@
  158. oldincludedir = @oldincludedir@
  159. prefix = @prefix@
  160. program_transform_name = @program_transform_name@
  161. sbindir = @sbindir@
  162. sharedstatedir = @sharedstatedir@
  163. sysconfdir = @sysconfdir@
  164. target = @target@
  165. target_alias = @target_alias@
  166. target_cpu = @target_cpu@
  167. target_os = @target_os@
  168. target_vendor = @target_vendor@
  169. AUTOMAKE_OPTIONS = gnu
  170. SUBDIRS = doc src man contrib
  171. all: all-recursive
  172. .SUFFIXES:
  173. am--refresh:
  174. @:
  175. $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
  176. @for dep in $?; do \
  177. case '$(am__configure_deps)' in \
  178. *$$dep*) \
  179. echo ' cd $(srcdir) && $(AUTOMAKE) --gnu '; \
  180. cd $(srcdir) && $(AUTOMAKE) --gnu \
  181. && exit 0; \
  182. exit 1;; \
  183. esac; \
  184. done; \
  185. echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \
  186. cd $(top_srcdir) && \
  187. $(AUTOMAKE) --gnu Makefile
  188. .PRECIOUS: Makefile
  189. Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  190. @case '$?' in \
  191. *config.status*) \
  192. echo ' $(SHELL) ./config.status'; \
  193. $(SHELL) ./config.status;; \
  194. *) \
  195. echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
  196. cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
  197. esac;
  198. $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
  199. $(SHELL) ./config.status --recheck
  200. $(top_srcdir)/configure: $(am__configure_deps)
  201. cd $(srcdir) && $(AUTOCONF)
  202. $(ACLOCAL_M4): $(am__aclocal_m4_deps)
  203. cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
  204. uninstall-info-am:
  205. # This directory's subdirectories are mostly independent; you can cd
  206. # into them and run `make' without going through this Makefile.
  207. # To change the values of `make' variables: instead of editing Makefiles,
  208. # (1) if the variable is set in `config.status', edit `config.status'
  209. # (which will cause the Makefiles to be regenerated when you run `make');
  210. # (2) otherwise, pass the desired values on the `make' command line.
  211. $(RECURSIVE_TARGETS):
  212. @failcom='exit 1'; \
  213. for f in x $$MAKEFLAGS; do \
  214. case $$f in \
  215. *=* | --[!k]*);; \
  216. *k*) failcom='fail=yes';; \
  217. esac; \
  218. done; \
  219. dot_seen=no; \
  220. target=`echo $@ | sed s/-recursive//`; \
  221. list='$(SUBDIRS)'; for subdir in $$list; do \
  222. echo "Making $$target in $$subdir"; \
  223. if test "$$subdir" = "."; then \
  224. dot_seen=yes; \
  225. local_target="$$target-am"; \
  226. else \
  227. local_target="$$target"; \
  228. fi; \
  229. (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
  230. || eval $$failcom; \
  231. done; \
  232. if test "$$dot_seen" = "no"; then \
  233. $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
  234. fi; test -z "$$fail"
  235. mostlyclean-recursive clean-recursive distclean-recursive \
  236. maintainer-clean-recursive:
  237. @failcom='exit 1'; \
  238. for f in x $$MAKEFLAGS; do \
  239. case $$f in \
  240. *=* | --[!k]*);; \
  241. *k*) failcom='fail=yes';; \
  242. esac; \
  243. done; \
  244. dot_seen=no; \
  245. case "$@" in \
  246. distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
  247. *) list='$(SUBDIRS)' ;; \
  248. esac; \
  249. rev=''; for subdir in $$list; do \
  250. if test "$$subdir" = "."; then :; else \
  251. rev="$$subdir $$rev"; \
  252. fi; \
  253. done; \
  254. rev="$$rev ."; \
  255. target=`echo $@ | sed s/-recursive//`; \
  256. for subdir in $$rev; do \
  257. echo "Making $$target in $$subdir"; \
  258. if test "$$subdir" = "."; then \
  259. local_target="$$target-am"; \
  260. else \
  261. local_target="$$target"; \
  262. fi; \
  263. (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
  264. || eval $$failcom; \
  265. done && test -z "$$fail"
  266. tags-recursive:
  267. list='$(SUBDIRS)'; for subdir in $$list; do \
  268. test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
  269. done
  270. ctags-recursive:
  271. list='$(SUBDIRS)'; for subdir in $$list; do \
  272. test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
  273. done
  274. ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
  275. list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
  276. unique=`for i in $$list; do \
  277. if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  278. done | \
  279. $(AWK) ' { files[$$0] = 1; } \
  280. END { for (i in files) print i; }'`; \
  281. mkid -fID $$unique
  282. tags: TAGS
  283. TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
  284. $(TAGS_FILES) $(LISP)
  285. tags=; \
  286. here=`pwd`; \
  287. if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
  288. include_option=--etags-include; \
  289. empty_fix=.; \
  290. else \
  291. include_option=--include; \
  292. empty_fix=; \
  293. fi; \
  294. list='$(SUBDIRS)'; for subdir in $$list; do \
  295. if test "$$subdir" = .; then :; else \
  296. test ! -f $$subdir/TAGS || \
  297. tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \
  298. fi; \
  299. done; \
  300. list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
  301. unique=`for i in $$list; do \
  302. if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  303. done | \
  304. $(AWK) ' { files[$$0] = 1; } \
  305. END { for (i in files) print i; }'`; \
  306. if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
  307. test -n "$$unique" || unique=$$empty_fix; \
  308. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  309. $$tags $$unique; \
  310. fi
  311. ctags: CTAGS
  312. CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
  313. $(TAGS_FILES) $(LISP)
  314. tags=; \
  315. here=`pwd`; \
  316. list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
  317. unique=`for i in $$list; do \
  318. if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  319. done | \
  320. $(AWK) ' { files[$$0] = 1; } \
  321. END { for (i in files) print i; }'`; \
  322. test -z "$(CTAGS_ARGS)$$tags$$unique" \
  323. || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
  324. $$tags $$unique
  325. GTAGS:
  326. here=`$(am__cd) $(top_builddir) && pwd` \
  327. && cd $(top_srcdir) \
  328. && gtags -i $(GTAGS_ARGS) $$here
  329. distclean-tags:
  330. -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
  331. distdir: $(DISTFILES)
  332. $(am__remove_distdir)
  333. mkdir $(distdir)
  334. @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
  335. topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
  336. list='$(DISTFILES)'; for file in $$list; do \
  337. case $$file in \
  338. $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
  339. $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
  340. esac; \
  341. if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
  342. dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
  343. if test "$$dir" != "$$file" && test "$$dir" != "."; then \
  344. dir="/$$dir"; \
  345. $(mkdir_p) "$(distdir)$$dir"; \
  346. else \
  347. dir=''; \
  348. fi; \
  349. if test -d $$d/$$file; then \
  350. if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
  351. cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
  352. fi; \
  353. cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
  354. else \
  355. test -f $(distdir)/$$file \
  356. || cp -p $$d/$$file $(distdir)/$$file \
  357. || exit 1; \
  358. fi; \
  359. done
  360. list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
  361. if test "$$subdir" = .; then :; else \
  362. test -d "$(distdir)/$$subdir" \
  363. || $(mkdir_p) "$(distdir)/$$subdir" \
  364. || exit 1; \
  365. distdir=`$(am__cd) $(distdir) && pwd`; \
  366. top_distdir=`$(am__cd) $(top_distdir) && pwd`; \
  367. (cd $$subdir && \
  368. $(MAKE) $(AM_MAKEFLAGS) \
  369. top_distdir="$$top_distdir" \
  370. distdir="$$distdir/$$subdir" \
  371. distdir) \
  372. || exit 1; \
  373. fi; \
  374. done
  375. -find $(distdir) -type d ! -perm -777 -exec chmod a+rwx {} \; -o \
  376. ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
  377. ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
  378. ! -type d ! -perm -444 -exec $(SHELL) $(install_sh) -c -m a+r {} {} \; \
  379. || chmod -R a+r $(distdir)
  380. dist-gzip: distdir
  381. tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
  382. $(am__remove_distdir)
  383. dist-bzip2: distdir
  384. tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2
  385. $(am__remove_distdir)
  386. dist-tarZ: distdir
  387. tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
  388. $(am__remove_distdir)
  389. dist-shar: distdir
  390. shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
  391. $(am__remove_distdir)
  392. dist-zip: distdir
  393. -rm -f $(distdir).zip
  394. zip -rq $(distdir).zip $(distdir)
  395. $(am__remove_distdir)
  396. dist dist-all: distdir
  397. tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
  398. $(am__remove_distdir)
  399. # This target untars the dist file and tries a VPATH configuration. Then
  400. # it guarantees that the distribution is self-contained by making another
  401. # tarfile.
  402. distcheck: dist
  403. case '$(DIST_ARCHIVES)' in \
  404. *.tar.gz*) \
  405. GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\
  406. *.tar.bz2*) \
  407. bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\
  408. *.tar.Z*) \
  409. uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
  410. *.shar.gz*) \
  411. GZIP=$(GZIP_ENV) gunzip -c $(distdir).shar.gz | unshar ;;\
  412. *.zip*) \
  413. unzip $(distdir).zip ;;\
  414. esac
  415. chmod -R a-w $(distdir); chmod a+w $(distdir)
  416. mkdir $(distdir)/_build
  417. mkdir $(distdir)/_inst
  418. chmod a-w $(distdir)
  419. dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
  420. && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
  421. && cd $(distdir)/_build \
  422. && ../configure --srcdir=.. --prefix="$$dc_install_base" \
  423. $(DISTCHECK_CONFIGURE_FLAGS) \
  424. && $(MAKE) $(AM_MAKEFLAGS) \
  425. && $(MAKE) $(AM_MAKEFLAGS) dvi \
  426. && $(MAKE) $(AM_MAKEFLAGS) check \
  427. && $(MAKE) $(AM_MAKEFLAGS) install \
  428. && $(MAKE) $(AM_MAKEFLAGS) installcheck \
  429. && $(MAKE) $(AM_MAKEFLAGS) uninstall \
  430. && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
  431. distuninstallcheck \
  432. && chmod -R a-w "$$dc_install_base" \
  433. && ({ \
  434. (cd ../.. && umask 077 && mkdir "$$dc_destdir") \
  435. && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
  436. && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
  437. && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
  438. distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
  439. } || { rm -rf "$$dc_destdir"; exit 1; }) \
  440. && rm -rf "$$dc_destdir" \
  441. && $(MAKE) $(AM_MAKEFLAGS) dist \
  442. && rm -rf $(DIST_ARCHIVES) \
  443. && $(MAKE) $(AM_MAKEFLAGS) distcleancheck
  444. $(am__remove_distdir)
  445. @(echo "$(distdir) archives ready for distribution: "; \
  446. list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
  447. sed -e '1{h;s/./=/g;p;x;}' -e '$${p;x;}'
  448. distuninstallcheck:
  449. @cd $(distuninstallcheck_dir) \
  450. && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \
  451. || { echo "ERROR: files left after uninstall:" ; \
  452. if test -n "$(DESTDIR)"; then \
  453. echo " (check DESTDIR support)"; \
  454. fi ; \
  455. $(distuninstallcheck_listfiles) ; \
  456. exit 1; } >&2
  457. distcleancheck: distclean
  458. @if test '$(srcdir)' = . ; then \
  459. echo "ERROR: distcleancheck can only run from a VPATH build" ; \
  460. exit 1 ; \
  461. fi
  462. @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
  463. || { echo "ERROR: files left in build directory after distclean:" ; \
  464. $(distcleancheck_listfiles) ; \
  465. exit 1; } >&2
  466. check-am: all-am
  467. check: check-recursive
  468. all-am: Makefile
  469. installdirs: installdirs-recursive
  470. installdirs-am:
  471. install: install-recursive
  472. install-exec: install-exec-recursive
  473. install-data: install-data-recursive
  474. uninstall: uninstall-recursive
  475. install-am: all-am
  476. @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
  477. installcheck: installcheck-recursive
  478. install-strip:
  479. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  480. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  481. `test -z '$(STRIP)' || \
  482. echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
  483. mostlyclean-generic:
  484. clean-generic:
  485. distclean-generic:
  486. -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
  487. maintainer-clean-generic:
  488. @echo "This command is intended for maintainers to use"
  489. @echo "it deletes files that may require special tools to rebuild."
  490. clean: clean-recursive
  491. clean-am: clean-generic clean-local mostlyclean-am
  492. distclean: distclean-recursive
  493. -rm -f $(am__CONFIG_DISTCLEAN_FILES)
  494. -rm -f Makefile
  495. distclean-am: clean-am distclean-generic distclean-tags
  496. dvi: dvi-recursive
  497. dvi-am:
  498. html: html-recursive
  499. info: info-recursive
  500. info-am:
  501. install-data-am:
  502. install-exec-am:
  503. install-info: install-info-recursive
  504. install-man:
  505. installcheck-am:
  506. maintainer-clean: maintainer-clean-recursive
  507. -rm -f $(am__CONFIG_DISTCLEAN_FILES)
  508. -rm -rf $(top_srcdir)/autom4te.cache
  509. -rm -f Makefile
  510. maintainer-clean-am: distclean-am maintainer-clean-generic \
  511. maintainer-clean-local
  512. mostlyclean: mostlyclean-recursive
  513. mostlyclean-am: mostlyclean-generic
  514. pdf: pdf-recursive
  515. pdf-am:
  516. ps: ps-recursive
  517. ps-am:
  518. uninstall-am: uninstall-info-am
  519. uninstall-info: uninstall-info-recursive
  520. .PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am am--refresh check \
  521. check-am clean clean-generic clean-local clean-recursive ctags \
  522. ctags-recursive dist dist-all dist-bzip2 dist-gzip dist-shar \
  523. dist-tarZ dist-zip distcheck distclean distclean-generic \
  524. distclean-recursive distclean-tags distcleancheck distdir \
  525. distuninstallcheck dvi dvi-am html html-am info info-am \
  526. install install-am install-data install-data-am install-exec \
  527. install-exec-am install-info install-info-am install-man \
  528. install-strip installcheck installcheck-am installdirs \
  529. installdirs-am maintainer-clean maintainer-clean-generic \
  530. maintainer-clean-local maintainer-clean-recursive mostlyclean \
  531. mostlyclean-generic mostlyclean-recursive pdf pdf-am ps ps-am \
  532. tags tags-recursive uninstall uninstall-am uninstall-info-am
  533. clean-local:
  534. rm -f build-stamp*
  535. maintainer-clean-local:
  536. rm -rf autom4te.cache
  537. rm -f Makefile.in Makefile aclocal.m4 configure
  538. rm -f mkinstalldirs missing depcomp install-sh
  539. rm -f config.log debian
  540. testsuite:
  541. make -C src/testsuite check
  542. lint:
  543. make -C src/ngircd lint
  544. srcdoc:
  545. make -C doc srcdoc
  546. xcode:
  547. @xcodebuild -project contrib/MacOSX/ngIRCd.xcodeproj -list \
  548. >/dev/null 2>&1 \
  549. || ( echo; echo "Error: \"xcodebuild\" not found!"; echo; exit 1 )
  550. xcodebuild -project contrib/MacOSX/ngIRCd.xcodeproj -alltargets \
  551. -buildstyle Development
  552. rpm: distcheck
  553. rpm -ta ngircd-*.tar.gz
  554. deb:
  555. [ -f debian/rules ] || ln -s contrib/Debian debian
  556. dpkg-buildpackage -rfakeroot
  557. # -eof-
  558. # Tell versions [3.59,3.63) of GNU make to not export all variables.
  559. # Otherwise a system limit (for SysV at least) may be exceeded.
  560. .NOEXPORT: