Makefile.in 18 KB

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