Makefile.in 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322
  1. # Makefile.in generated by automake 1.6.1 from Makefile.am.
  2. # @configure_input@
  3. # Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
  4. # 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. # leave in dependency order, since common must be built first
  14. SHELL = @SHELL@
  15. srcdir = @srcdir@
  16. top_srcdir = @top_srcdir@
  17. VPATH = @srcdir@
  18. prefix = @prefix@
  19. exec_prefix = @exec_prefix@
  20. bindir = @bindir@
  21. sbindir = @sbindir@
  22. libexecdir = @libexecdir@
  23. datadir = @datadir@
  24. sysconfdir = @sysconfdir@
  25. sharedstatedir = @sharedstatedir@
  26. localstatedir = @localstatedir@
  27. libdir = @libdir@
  28. infodir = @infodir@
  29. mandir = @mandir@
  30. includedir = @includedir@
  31. oldincludedir = /usr/include
  32. pkgdatadir = $(datadir)/@PACKAGE@
  33. pkglibdir = $(libdir)/@PACKAGE@
  34. pkgincludedir = $(includedir)/@PACKAGE@
  35. top_builddir = ..
  36. ACLOCAL = @ACLOCAL@
  37. AUTOCONF = @AUTOCONF@
  38. AUTOMAKE = @AUTOMAKE@
  39. AUTOHEADER = @AUTOHEADER@
  40. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
  41. INSTALL = @INSTALL@
  42. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  43. INSTALL_DATA = @INSTALL_DATA@
  44. install_sh_DATA = $(install_sh) -c -m 644
  45. install_sh_PROGRAM = $(install_sh) -c
  46. INSTALL_SCRIPT = @INSTALL_SCRIPT@
  47. INSTALL_HEADER = $(INSTALL_DATA)
  48. transform = @program_transform_name@
  49. NORMAL_INSTALL = :
  50. PRE_INSTALL = :
  51. POST_INSTALL = :
  52. NORMAL_UNINSTALL = :
  53. PRE_UNINSTALL = :
  54. POST_UNINSTALL = :
  55. EXEEXT = @EXEEXT@
  56. OBJEXT = @OBJEXT@
  57. PATH_SEPARATOR = @PATH_SEPARATOR@
  58. AMTAR = @AMTAR@
  59. AWK = @AWK@
  60. CC = @CC@
  61. DEPDIR = @DEPDIR@
  62. INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
  63. PACKAGE = @PACKAGE@
  64. RANLIB = @RANLIB@
  65. STRIP = @STRIP@
  66. VERSION = @VERSION@
  67. am__include = @am__include@
  68. am__quote = @am__quote@
  69. install_sh = @install_sh@
  70. SUBDIRS = common smtpap orkeygen httpap op or
  71. DIST_SUBDIRS = common smtpap orkeygen httpap op or
  72. subdir = src
  73. mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
  74. CONFIG_HEADER = $(top_builddir)/orconfig.h
  75. CONFIG_CLEAN_FILES =
  76. DIST_SOURCES =
  77. RECURSIVE_TARGETS = info-recursive dvi-recursive install-info-recursive \
  78. uninstall-info-recursive all-recursive install-data-recursive \
  79. install-exec-recursive installdirs-recursive install-recursive \
  80. uninstall-recursive check-recursive installcheck-recursive
  81. DIST_COMMON = Makefile.am Makefile.in
  82. all: all-recursive
  83. .SUFFIXES:
  84. $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.ac $(ACLOCAL_M4)
  85. cd $(top_srcdir) && \
  86. $(AUTOMAKE) --gnu src/Makefile
  87. Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  88. cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)
  89. uninstall-info-am:
  90. # This directory's subdirectories are mostly independent; you can cd
  91. # into them and run `make' without going through this Makefile.
  92. # To change the values of `make' variables: instead of editing Makefiles,
  93. # (1) if the variable is set in `config.status', edit `config.status'
  94. # (which will cause the Makefiles to be regenerated when you run `make');
  95. # (2) otherwise, pass the desired values on the `make' command line.
  96. $(RECURSIVE_TARGETS):
  97. @set fnord $$MAKEFLAGS; amf=$$2; \
  98. dot_seen=no; \
  99. target=`echo $@ | sed s/-recursive//`; \
  100. list='$(SUBDIRS)'; for subdir in $$list; do \
  101. echo "Making $$target in $$subdir"; \
  102. if test "$$subdir" = "."; then \
  103. dot_seen=yes; \
  104. local_target="$$target-am"; \
  105. else \
  106. local_target="$$target"; \
  107. fi; \
  108. (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
  109. || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
  110. done; \
  111. if test "$$dot_seen" = "no"; then \
  112. $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
  113. fi; test -z "$$fail"
  114. mostlyclean-recursive clean-recursive distclean-recursive \
  115. maintainer-clean-recursive:
  116. @set fnord $$MAKEFLAGS; amf=$$2; \
  117. dot_seen=no; \
  118. case "$@" in \
  119. distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
  120. *) list='$(SUBDIRS)' ;; \
  121. esac; \
  122. rev=''; for subdir in $$list; do \
  123. if test "$$subdir" = "."; then :; else \
  124. rev="$$subdir $$rev"; \
  125. fi; \
  126. done; \
  127. rev="$$rev ."; \
  128. target=`echo $@ | sed s/-recursive//`; \
  129. for subdir in $$rev; do \
  130. echo "Making $$target in $$subdir"; \
  131. if test "$$subdir" = "."; then \
  132. local_target="$$target-am"; \
  133. else \
  134. local_target="$$target"; \
  135. fi; \
  136. (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
  137. || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
  138. done && test -z "$$fail"
  139. tags-recursive:
  140. list='$(SUBDIRS)'; for subdir in $$list; do \
  141. test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
  142. done
  143. ETAGS = etags
  144. ETAGSFLAGS =
  145. tags: TAGS
  146. ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
  147. list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
  148. unique=`for i in $$list; do \
  149. if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  150. done | \
  151. $(AWK) ' { files[$$0] = 1; } \
  152. END { for (i in files) print i; }'`; \
  153. mkid -fID $$unique
  154. TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
  155. $(TAGS_FILES) $(LISP)
  156. tags=; \
  157. here=`pwd`; \
  158. list='$(SUBDIRS)'; for subdir in $$list; do \
  159. if test "$$subdir" = .; then :; else \
  160. test -f $$subdir/TAGS && tags="$$tags -i $$here/$$subdir/TAGS"; \
  161. fi; \
  162. done; \
  163. list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
  164. unique=`for i in $$list; do \
  165. if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  166. done | \
  167. $(AWK) ' { files[$$0] = 1; } \
  168. END { for (i in files) print i; }'`; \
  169. test -z "$(ETAGS_ARGS)$$tags$$unique" \
  170. || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  171. $$tags $$unique
  172. GTAGS:
  173. here=`$(am__cd) $(top_builddir) && pwd` \
  174. && cd $(top_srcdir) \
  175. && gtags -i $(GTAGS_ARGS) $$here
  176. distclean-tags:
  177. -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH
  178. DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
  179. top_distdir = ..
  180. distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
  181. distdir: $(DISTFILES)
  182. @for file in $(DISTFILES); do \
  183. if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
  184. dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
  185. if test "$$dir" != "$$file" && test "$$dir" != "."; then \
  186. dir="/$$dir"; \
  187. $(mkinstalldirs) "$(distdir)$$dir"; \
  188. else \
  189. dir=''; \
  190. fi; \
  191. if test -d $$d/$$file; then \
  192. if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
  193. cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
  194. fi; \
  195. cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
  196. else \
  197. test -f $(distdir)/$$file \
  198. || cp -p $$d/$$file $(distdir)/$$file \
  199. || exit 1; \
  200. fi; \
  201. done
  202. list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
  203. if test "$$subdir" = .; then :; else \
  204. test -d $(distdir)/$$subdir \
  205. || mkdir $(distdir)/$$subdir \
  206. || exit 1; \
  207. (cd $$subdir && \
  208. $(MAKE) $(AM_MAKEFLAGS) \
  209. top_distdir="$(top_distdir)" \
  210. distdir=../$(distdir)/$$subdir \
  211. distdir) \
  212. || exit 1; \
  213. fi; \
  214. done
  215. check-am: all-am
  216. check: check-recursive
  217. all-am: Makefile
  218. installdirs: installdirs-recursive
  219. installdirs-am:
  220. install: install-recursive
  221. install-exec: install-exec-recursive
  222. install-data: install-data-recursive
  223. uninstall: uninstall-recursive
  224. install-am: all-am
  225. @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
  226. installcheck: installcheck-recursive
  227. install-strip:
  228. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  229. INSTALL_STRIP_FLAG=-s \
  230. `test -z '$(STRIP)' || \
  231. echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
  232. mostlyclean-generic:
  233. clean-generic:
  234. distclean-generic:
  235. -rm -f Makefile $(CONFIG_CLEAN_FILES) stamp-h stamp-h[0-9]*
  236. maintainer-clean-generic:
  237. @echo "This command is intended for maintainers to use"
  238. @echo "it deletes files that may require special tools to rebuild."
  239. clean: clean-recursive
  240. clean-am: clean-generic mostlyclean-am
  241. distclean: distclean-recursive
  242. distclean-am: clean-am distclean-generic distclean-tags
  243. dvi: dvi-recursive
  244. dvi-am:
  245. info: info-recursive
  246. info-am:
  247. install-data-am:
  248. install-exec-am:
  249. install-info: install-info-recursive
  250. install-man:
  251. installcheck-am:
  252. maintainer-clean: maintainer-clean-recursive
  253. maintainer-clean-am: distclean-am maintainer-clean-generic
  254. mostlyclean: mostlyclean-recursive
  255. mostlyclean-am: mostlyclean-generic
  256. uninstall-am: uninstall-info-am
  257. uninstall-info: uninstall-info-recursive
  258. .PHONY: $(RECURSIVE_TARGETS) GTAGS all all-am check check-am clean \
  259. clean-generic clean-recursive distclean distclean-generic \
  260. distclean-recursive distclean-tags distdir dvi dvi-am \
  261. dvi-recursive info info-am info-recursive install install-am \
  262. install-data install-data-am install-data-recursive \
  263. install-exec install-exec-am install-exec-recursive \
  264. install-info install-info-am install-info-recursive install-man \
  265. install-recursive install-strip installcheck installcheck-am \
  266. installdirs installdirs-am installdirs-recursive \
  267. maintainer-clean maintainer-clean-generic \
  268. maintainer-clean-recursive mostlyclean mostlyclean-generic \
  269. mostlyclean-recursive tags tags-recursive uninstall \
  270. uninstall-am uninstall-info-am uninstall-info-recursive \
  271. uninstall-recursive
  272. # Tell versions [3.59,3.63) of GNU make to not export all variables.
  273. # Otherwise a system limit (for SysV at least) may be exceeded.
  274. .NOEXPORT: