Makefile.in 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436
  1. # Makefile.in generated by automake 1.16.1 from Makefile.am.
  2. # @configure_input@
  3. # Copyright (C) 1994-2018 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. #
  13. # ngIRCd -- The Next Generation IRC Daemon
  14. # Copyright (c)2001-2008 Alexander Barton <alex@barton.de>
  15. #
  16. # This program is free software; you can redistribute it and/or modify
  17. # it under the terms of the GNU General Public License as published by
  18. # the Free Software Foundation; either version 2 of the License, or
  19. # (at your option) any later version.
  20. # Please read the file COPYING, README and AUTHORS for more information.
  21. #
  22. VPATH = @srcdir@
  23. am__is_gnu_make = { \
  24. if test -z '$(MAKELEVEL)'; then \
  25. false; \
  26. elif test -n '$(MAKE_HOST)'; then \
  27. true; \
  28. elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
  29. true; \
  30. else \
  31. false; \
  32. fi; \
  33. }
  34. am__make_running_with_option = \
  35. case $${target_option-} in \
  36. ?) ;; \
  37. *) echo "am__make_running_with_option: internal error: invalid" \
  38. "target option '$${target_option-}' specified" >&2; \
  39. exit 1;; \
  40. esac; \
  41. has_opt=no; \
  42. sane_makeflags=$$MAKEFLAGS; \
  43. if $(am__is_gnu_make); then \
  44. sane_makeflags=$$MFLAGS; \
  45. else \
  46. case $$MAKEFLAGS in \
  47. *\\[\ \ ]*) \
  48. bs=\\; \
  49. sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
  50. | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
  51. esac; \
  52. fi; \
  53. skip_next=no; \
  54. strip_trailopt () \
  55. { \
  56. flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
  57. }; \
  58. for flg in $$sane_makeflags; do \
  59. test $$skip_next = yes && { skip_next=no; continue; }; \
  60. case $$flg in \
  61. *=*|--*) continue;; \
  62. -*I) strip_trailopt 'I'; skip_next=yes;; \
  63. -*I?*) strip_trailopt 'I';; \
  64. -*O) strip_trailopt 'O'; skip_next=yes;; \
  65. -*O?*) strip_trailopt 'O';; \
  66. -*l) strip_trailopt 'l'; skip_next=yes;; \
  67. -*l?*) strip_trailopt 'l';; \
  68. -[dEDm]) skip_next=yes;; \
  69. -[JT]) skip_next=yes;; \
  70. esac; \
  71. case $$flg in \
  72. *$$target_option*) has_opt=yes; break;; \
  73. esac; \
  74. done; \
  75. test $$has_opt = yes
  76. am__make_dryrun = (target_option=n; $(am__make_running_with_option))
  77. am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
  78. pkgdatadir = $(datadir)/@PACKAGE@
  79. pkgincludedir = $(includedir)/@PACKAGE@
  80. pkglibdir = $(libdir)/@PACKAGE@
  81. pkglibexecdir = $(libexecdir)/@PACKAGE@
  82. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
  83. install_sh_DATA = $(install_sh) -c -m 644
  84. install_sh_PROGRAM = $(install_sh) -c
  85. install_sh_SCRIPT = $(install_sh) -c
  86. INSTALL_HEADER = $(INSTALL_DATA)
  87. transform = $(program_transform_name)
  88. NORMAL_INSTALL = :
  89. PRE_INSTALL = :
  90. POST_INSTALL = :
  91. NORMAL_UNINSTALL = :
  92. PRE_UNINSTALL = :
  93. POST_UNINSTALL = :
  94. build_triplet = @build@
  95. host_triplet = @host@
  96. subdir = contrib/MacOSX/ngIRCd.xcodeproj
  97. ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
  98. am__aclocal_m4_deps = $(top_srcdir)/configure.ac
  99. am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
  100. $(ACLOCAL_M4)
  101. DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
  102. mkinstalldirs = $(install_sh) -d
  103. CONFIG_HEADER = $(top_builddir)/src/config.h
  104. CONFIG_CLEAN_FILES =
  105. CONFIG_CLEAN_VPATH_FILES =
  106. AM_V_P = $(am__v_P_@AM_V@)
  107. am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
  108. am__v_P_0 = false
  109. am__v_P_1 = :
  110. AM_V_GEN = $(am__v_GEN_@AM_V@)
  111. am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
  112. am__v_GEN_0 = @echo " GEN " $@;
  113. am__v_GEN_1 =
  114. AM_V_at = $(am__v_at_@AM_V@)
  115. am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
  116. am__v_at_0 = @
  117. am__v_at_1 =
  118. SOURCES =
  119. DIST_SOURCES =
  120. am__can_run_installinfo = \
  121. case $$AM_UPDATE_INFO_DIR in \
  122. n|no|NO) false;; \
  123. *) (install-info --version) >/dev/null 2>&1;; \
  124. esac
  125. am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
  126. am__DIST_COMMON = $(srcdir)/Makefile.in
  127. DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
  128. ACLOCAL = @ACLOCAL@
  129. AMTAR = @AMTAR@
  130. AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
  131. AR = @AR@
  132. AUTOCONF = @AUTOCONF@
  133. AUTOHEADER = @AUTOHEADER@
  134. AUTOMAKE = @AUTOMAKE@
  135. AWK = @AWK@
  136. CC = @CC@
  137. CCDEPMODE = @CCDEPMODE@
  138. CFLAGS = @CFLAGS@
  139. CPP = @CPP@
  140. CPPFLAGS = @CPPFLAGS@
  141. CYGPATH_W = @CYGPATH_W@
  142. DEFS = @DEFS@
  143. DEPDIR = @DEPDIR@
  144. ECHO_C = @ECHO_C@
  145. ECHO_N = @ECHO_N@
  146. ECHO_T = @ECHO_T@
  147. EGREP = @EGREP@
  148. EXEEXT = @EXEEXT@
  149. GREP = @GREP@
  150. INSTALL = @INSTALL@
  151. INSTALL_DATA = @INSTALL_DATA@
  152. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  153. INSTALL_SCRIPT = @INSTALL_SCRIPT@
  154. INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
  155. LDFLAGS = @LDFLAGS@
  156. LIBOBJS = @LIBOBJS@
  157. LIBS = @LIBS@
  158. LN_S = @LN_S@
  159. LTLIBOBJS = @LTLIBOBJS@
  160. MAKEINFO = @MAKEINFO@
  161. MKDIR_P = @MKDIR_P@
  162. OBJEXT = @OBJEXT@
  163. OPENSSL_CFLAGS = @OPENSSL_CFLAGS@
  164. OPENSSL_LIBS = @OPENSSL_LIBS@
  165. PACKAGE = @PACKAGE@
  166. PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
  167. PACKAGE_NAME = @PACKAGE_NAME@
  168. PACKAGE_STRING = @PACKAGE_STRING@
  169. PACKAGE_TARNAME = @PACKAGE_TARNAME@
  170. PACKAGE_URL = @PACKAGE_URL@
  171. PACKAGE_VERSION = @PACKAGE_VERSION@
  172. PATH_SEPARATOR = @PATH_SEPARATOR@
  173. PKG_CONFIG = @PKG_CONFIG@
  174. PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
  175. PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
  176. RANLIB = @RANLIB@
  177. SET_MAKE = @SET_MAKE@
  178. SHELL = @SHELL@
  179. STRIP = @STRIP@
  180. VERSION = @VERSION@
  181. abs_builddir = @abs_builddir@
  182. abs_srcdir = @abs_srcdir@
  183. abs_top_builddir = @abs_top_builddir@
  184. abs_top_srcdir = @abs_top_srcdir@
  185. ac_ct_AR = @ac_ct_AR@
  186. ac_ct_CC = @ac_ct_CC@
  187. am__include = @am__include@
  188. am__leading_dot = @am__leading_dot@
  189. am__quote = @am__quote@
  190. am__tar = @am__tar@
  191. am__untar = @am__untar@
  192. bindir = @bindir@
  193. build = @build@
  194. build_alias = @build_alias@
  195. build_cpu = @build_cpu@
  196. build_os = @build_os@
  197. build_vendor = @build_vendor@
  198. builddir = @builddir@
  199. datadir = @datadir@
  200. datarootdir = @datarootdir@
  201. docdir = @docdir@
  202. dvidir = @dvidir@
  203. exec_prefix = @exec_prefix@
  204. host = @host@
  205. host_alias = @host_alias@
  206. host_cpu = @host_cpu@
  207. host_os = @host_os@
  208. host_vendor = @host_vendor@
  209. htmldir = @htmldir@
  210. includedir = @includedir@
  211. infodir = @infodir@
  212. install_sh = @install_sh@
  213. libdir = @libdir@
  214. libexecdir = @libexecdir@
  215. localedir = @localedir@
  216. localstatedir = @localstatedir@
  217. mandir = @mandir@
  218. mkdir_p = @mkdir_p@
  219. oldincludedir = @oldincludedir@
  220. pdfdir = @pdfdir@
  221. prefix = @prefix@
  222. program_transform_name = @program_transform_name@
  223. psdir = @psdir@
  224. runstatedir = @runstatedir@
  225. sbindir = @sbindir@
  226. sharedstatedir = @sharedstatedir@
  227. srcdir = @srcdir@
  228. sysconfdir = @sysconfdir@
  229. target_alias = @target_alias@
  230. top_build_prefix = @top_build_prefix@
  231. top_builddir = @top_builddir@
  232. top_srcdir = @top_srcdir@
  233. EXTRA_DIST = project.pbxproj
  234. all: all-am
  235. .SUFFIXES:
  236. $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
  237. @for dep in $?; do \
  238. case '$(am__configure_deps)' in \
  239. *$$dep*) \
  240. ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
  241. && { if test -f $@; then exit 0; else break; fi; }; \
  242. exit 1;; \
  243. esac; \
  244. done; \
  245. echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign contrib/MacOSX/ngIRCd.xcodeproj/Makefile'; \
  246. $(am__cd) $(top_srcdir) && \
  247. $(AUTOMAKE) --foreign contrib/MacOSX/ngIRCd.xcodeproj/Makefile
  248. Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  249. @case '$?' in \
  250. *config.status*) \
  251. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
  252. *) \
  253. echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
  254. cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
  255. esac;
  256. $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
  257. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  258. $(top_srcdir)/configure: $(am__configure_deps)
  259. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  260. $(ACLOCAL_M4): $(am__aclocal_m4_deps)
  261. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  262. $(am__aclocal_m4_deps):
  263. tags TAGS:
  264. ctags CTAGS:
  265. cscope cscopelist:
  266. distdir: $(BUILT_SOURCES)
  267. $(MAKE) $(AM_MAKEFLAGS) distdir-am
  268. distdir-am: $(DISTFILES)
  269. @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  270. topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  271. list='$(DISTFILES)'; \
  272. dist_files=`for file in $$list; do echo $$file; done | \
  273. sed -e "s|^$$srcdirstrip/||;t" \
  274. -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
  275. case $$dist_files in \
  276. */*) $(MKDIR_P) `echo "$$dist_files" | \
  277. sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
  278. sort -u` ;; \
  279. esac; \
  280. for file in $$dist_files; do \
  281. if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
  282. if test -d $$d/$$file; then \
  283. dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
  284. if test -d "$(distdir)/$$file"; then \
  285. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  286. fi; \
  287. if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
  288. cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
  289. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  290. fi; \
  291. cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
  292. else \
  293. test -f "$(distdir)/$$file" \
  294. || cp -p $$d/$$file "$(distdir)/$$file" \
  295. || exit 1; \
  296. fi; \
  297. done
  298. check-am: all-am
  299. check: check-am
  300. all-am: Makefile
  301. installdirs:
  302. install: install-am
  303. install-exec: install-exec-am
  304. install-data: install-data-am
  305. uninstall: uninstall-am
  306. install-am: all-am
  307. @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
  308. installcheck: installcheck-am
  309. install-strip:
  310. if test -z '$(STRIP)'; then \
  311. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  312. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  313. install; \
  314. else \
  315. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  316. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  317. "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
  318. fi
  319. mostlyclean-generic:
  320. clean-generic:
  321. distclean-generic:
  322. -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
  323. -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
  324. maintainer-clean-generic:
  325. @echo "This command is intended for maintainers to use"
  326. @echo "it deletes files that may require special tools to rebuild."
  327. clean: clean-am
  328. clean-am: clean-generic mostlyclean-am
  329. distclean: distclean-am
  330. -rm -f Makefile
  331. distclean-am: clean-am distclean-generic
  332. dvi: dvi-am
  333. dvi-am:
  334. html: html-am
  335. html-am:
  336. info: info-am
  337. info-am:
  338. install-data-am:
  339. install-dvi: install-dvi-am
  340. install-dvi-am:
  341. install-exec-am:
  342. install-html: install-html-am
  343. install-html-am:
  344. install-info: install-info-am
  345. install-info-am:
  346. install-man:
  347. install-pdf: install-pdf-am
  348. install-pdf-am:
  349. install-ps: install-ps-am
  350. install-ps-am:
  351. installcheck-am:
  352. maintainer-clean: maintainer-clean-am
  353. -rm -f Makefile
  354. maintainer-clean-am: distclean-am maintainer-clean-generic \
  355. maintainer-clean-local
  356. mostlyclean: mostlyclean-am
  357. mostlyclean-am: mostlyclean-generic
  358. pdf: pdf-am
  359. pdf-am:
  360. ps: ps-am
  361. ps-am:
  362. uninstall-am:
  363. .MAKE: install-am install-strip
  364. .PHONY: all all-am check check-am clean clean-generic cscopelist-am \
  365. ctags-am distclean distclean-generic distdir dvi dvi-am html \
  366. html-am info info-am install install-am install-data \
  367. install-data-am install-dvi install-dvi-am install-exec \
  368. install-exec-am install-html install-html-am install-info \
  369. install-info-am install-man install-pdf install-pdf-am \
  370. install-ps install-ps-am install-strip installcheck \
  371. installcheck-am installdirs maintainer-clean \
  372. maintainer-clean-generic maintainer-clean-local mostlyclean \
  373. mostlyclean-generic pdf pdf-am ps ps-am tags-am uninstall \
  374. uninstall-am
  375. .PRECIOUS: Makefile
  376. maintainer-clean-local:
  377. rm -f Makefile Makefile.in
  378. # -eof-
  379. # Tell versions [3.59,3.63) of GNU make to not export all variables.
  380. # Otherwise a system limit (for SysV at least) may be exceeded.
  381. .NOEXPORT: