Makefile.in 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925
  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. VPATH = @srcdir@
  13. am__is_gnu_make = { \
  14. if test -z '$(MAKELEVEL)'; then \
  15. false; \
  16. elif test -n '$(MAKE_HOST)'; then \
  17. true; \
  18. elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
  19. true; \
  20. else \
  21. false; \
  22. fi; \
  23. }
  24. am__make_running_with_option = \
  25. case $${target_option-} in \
  26. ?) ;; \
  27. *) echo "am__make_running_with_option: internal error: invalid" \
  28. "target option '$${target_option-}' specified" >&2; \
  29. exit 1;; \
  30. esac; \
  31. has_opt=no; \
  32. sane_makeflags=$$MAKEFLAGS; \
  33. if $(am__is_gnu_make); then \
  34. sane_makeflags=$$MFLAGS; \
  35. else \
  36. case $$MAKEFLAGS in \
  37. *\\[\ \ ]*) \
  38. bs=\\; \
  39. sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
  40. | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
  41. esac; \
  42. fi; \
  43. skip_next=no; \
  44. strip_trailopt () \
  45. { \
  46. flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
  47. }; \
  48. for flg in $$sane_makeflags; do \
  49. test $$skip_next = yes && { skip_next=no; continue; }; \
  50. case $$flg in \
  51. *=*|--*) continue;; \
  52. -*I) strip_trailopt 'I'; skip_next=yes;; \
  53. -*I?*) strip_trailopt 'I';; \
  54. -*O) strip_trailopt 'O'; skip_next=yes;; \
  55. -*O?*) strip_trailopt 'O';; \
  56. -*l) strip_trailopt 'l'; skip_next=yes;; \
  57. -*l?*) strip_trailopt 'l';; \
  58. -[dEDm]) skip_next=yes;; \
  59. -[JT]) skip_next=yes;; \
  60. esac; \
  61. case $$flg in \
  62. *$$target_option*) has_opt=yes; break;; \
  63. esac; \
  64. done; \
  65. test $$has_opt = yes
  66. am__make_dryrun = (target_option=n; $(am__make_running_with_option))
  67. am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
  68. pkgdatadir = $(datadir)/@PACKAGE@
  69. pkgincludedir = $(includedir)/@PACKAGE@
  70. pkglibdir = $(libdir)/@PACKAGE@
  71. pkglibexecdir = $(libexecdir)/@PACKAGE@
  72. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
  73. install_sh_DATA = $(install_sh) -c -m 644
  74. install_sh_PROGRAM = $(install_sh) -c
  75. install_sh_SCRIPT = $(install_sh) -c
  76. INSTALL_HEADER = $(INSTALL_DATA)
  77. transform = $(program_transform_name)
  78. NORMAL_INSTALL = :
  79. PRE_INSTALL = :
  80. POST_INSTALL = :
  81. NORMAL_UNINSTALL = :
  82. PRE_UNINSTALL = :
  83. POST_UNINSTALL = :
  84. build_triplet = @build@
  85. host_triplet = @host@
  86. subdir = .
  87. ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
  88. am__aclocal_m4_deps = $(top_srcdir)/scripts/ax_pthread.m4 \
  89. $(top_srcdir)/scripts/libtool.m4 \
  90. $(top_srcdir)/scripts/ltoptions.m4 \
  91. $(top_srcdir)/scripts/ltsugar.m4 \
  92. $(top_srcdir)/scripts/ltversion.m4 \
  93. $(top_srcdir)/scripts/lt~obsolete.m4 \
  94. $(top_srcdir)/configure.ac
  95. am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
  96. $(ACLOCAL_M4)
  97. DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \
  98. $(am__configure_deps) $(am__DIST_COMMON)
  99. am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
  100. configure.lineno config.status.lineno
  101. mkinstalldirs = $(SHELL) $(top_srcdir)/scripts/mkinstalldirs
  102. CONFIG_HEADER = osip-config.h
  103. CONFIG_CLEAN_FILES = libosip2.pc
  104. CONFIG_CLEAN_VPATH_FILES =
  105. AM_V_P = $(am__v_P_@AM_V@)
  106. am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
  107. am__v_P_0 = false
  108. am__v_P_1 = :
  109. AM_V_GEN = $(am__v_GEN_@AM_V@)
  110. am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
  111. am__v_GEN_0 = @echo " GEN " $@;
  112. am__v_GEN_1 =
  113. AM_V_at = $(am__v_at_@AM_V@)
  114. am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
  115. am__v_at_0 = @
  116. am__v_at_1 =
  117. SOURCES =
  118. DIST_SOURCES =
  119. RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
  120. ctags-recursive dvi-recursive html-recursive info-recursive \
  121. install-data-recursive install-dvi-recursive \
  122. install-exec-recursive install-html-recursive \
  123. install-info-recursive install-pdf-recursive \
  124. install-ps-recursive install-recursive installcheck-recursive \
  125. installdirs-recursive pdf-recursive ps-recursive \
  126. tags-recursive uninstall-recursive
  127. am__can_run_installinfo = \
  128. case $$AM_UPDATE_INFO_DIR in \
  129. n|no|NO) false;; \
  130. *) (install-info --version) >/dev/null 2>&1;; \
  131. esac
  132. am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
  133. am__vpath_adj = case $$p in \
  134. $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
  135. *) f=$$p;; \
  136. esac;
  137. am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
  138. am__install_max = 40
  139. am__nobase_strip_setup = \
  140. srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
  141. am__nobase_strip = \
  142. for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
  143. am__nobase_list = $(am__nobase_strip_setup); \
  144. for p in $$list; do echo "$$p $$p"; done | \
  145. sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
  146. $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
  147. if (++n[$$2] == $(am__install_max)) \
  148. { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
  149. END { for (dir in files) print dir, files[dir] }'
  150. am__base_list = \
  151. sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
  152. sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
  153. am__uninstall_files_from_dir = { \
  154. test -z "$$files" \
  155. || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
  156. || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
  157. $(am__cd) "$$dir" && rm -f $$files; }; \
  158. }
  159. am__installdirs = "$(DESTDIR)$(pkgconfigdir)"
  160. DATA = $(pkgconfig_DATA)
  161. RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
  162. distclean-recursive maintainer-clean-recursive
  163. am__recursive_targets = \
  164. $(RECURSIVE_TARGETS) \
  165. $(RECURSIVE_CLEAN_TARGETS) \
  166. $(am__extra_recursive_targets)
  167. AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
  168. cscope distdir distdir-am dist dist-all distcheck
  169. am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \
  170. $(LISP)osip-config.h.in
  171. # Read a list of newline-separated strings from the standard input,
  172. # and print each of them once, without duplicates. Input order is
  173. # *not* preserved.
  174. am__uniquify_input = $(AWK) '\
  175. BEGIN { nonempty = 0; } \
  176. { items[$$0] = 1; nonempty = 1; } \
  177. END { if (nonempty) { for (i in items) print i; }; } \
  178. '
  179. # Make sure the list of sources is unique. This is necessary because,
  180. # e.g., the same source file might be shared among _SOURCES variables
  181. # for different programs/libraries.
  182. am__define_uniq_tagged_files = \
  183. list='$(am__tagged_files)'; \
  184. unique=`for i in $$list; do \
  185. if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  186. done | $(am__uniquify_input)`
  187. ETAGS = etags
  188. CTAGS = ctags
  189. CSCOPE = cscope
  190. DIST_SUBDIRS = $(SUBDIRS)
  191. am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/libosip2.pc.in \
  192. $(srcdir)/osip-config.h.in $(top_srcdir)/scripts/compile \
  193. $(top_srcdir)/scripts/config.guess \
  194. $(top_srcdir)/scripts/config.sub \
  195. $(top_srcdir)/scripts/install-sh \
  196. $(top_srcdir)/scripts/ltmain.sh $(top_srcdir)/scripts/missing \
  197. $(top_srcdir)/scripts/mkinstalldirs AUTHORS COPYING ChangeLog \
  198. INSTALL NEWS README TODO
  199. DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
  200. distdir = $(PACKAGE)-$(VERSION)
  201. top_distdir = $(distdir)
  202. am__remove_distdir = \
  203. if test -d "$(distdir)"; then \
  204. find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
  205. && rm -rf "$(distdir)" \
  206. || { sleep 5 && rm -rf "$(distdir)"; }; \
  207. else :; fi
  208. am__post_remove_distdir = $(am__remove_distdir)
  209. am__relativize = \
  210. dir0=`pwd`; \
  211. sed_first='s,^\([^/]*\)/.*$$,\1,'; \
  212. sed_rest='s,^[^/]*/*,,'; \
  213. sed_last='s,^.*/\([^/]*\)$$,\1,'; \
  214. sed_butlast='s,/*[^/]*$$,,'; \
  215. while test -n "$$dir1"; do \
  216. first=`echo "$$dir1" | sed -e "$$sed_first"`; \
  217. if test "$$first" != "."; then \
  218. if test "$$first" = ".."; then \
  219. dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
  220. dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
  221. else \
  222. first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
  223. if test "$$first2" = "$$first"; then \
  224. dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
  225. else \
  226. dir2="../$$dir2"; \
  227. fi; \
  228. dir0="$$dir0"/"$$first"; \
  229. fi; \
  230. fi; \
  231. dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
  232. done; \
  233. reldir="$$dir2"
  234. DIST_ARCHIVES = $(distdir).tar.gz
  235. GZIP_ENV = --best
  236. DIST_TARGETS = dist-gzip
  237. distuninstallcheck_listfiles = find . -type f -print
  238. am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
  239. | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
  240. distcleancheck_listfiles = find . -type f -print
  241. ACLOCAL = @ACLOCAL@
  242. AMTAR = @AMTAR@
  243. AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
  244. AR = @AR@
  245. AUTOCONF = @AUTOCONF@
  246. AUTOHEADER = @AUTOHEADER@
  247. AUTOMAKE = @AUTOMAKE@
  248. AWK = @AWK@
  249. CC = @CC@
  250. CCDEPMODE = @CCDEPMODE@
  251. CFLAGS = @CFLAGS@
  252. CPP = @CPP@
  253. CPPFLAGS = @CPPFLAGS@
  254. CYGPATH_W = @CYGPATH_W@
  255. DEFS = @DEFS@
  256. DEPDIR = @DEPDIR@
  257. DLLTOOL = @DLLTOOL@
  258. DSYMUTIL = @DSYMUTIL@
  259. DUMPBIN = @DUMPBIN@
  260. ECHO_C = @ECHO_C@
  261. ECHO_N = @ECHO_N@
  262. ECHO_T = @ECHO_T@
  263. EGREP = @EGREP@
  264. EXEEXT = @EXEEXT@
  265. EXTRA_LIB = @EXTRA_LIB@
  266. FGREP = @FGREP@
  267. FSM_LIB = @FSM_LIB@
  268. GREP = @GREP@
  269. INSTALL = @INSTALL@
  270. INSTALL_DATA = @INSTALL_DATA@
  271. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  272. INSTALL_SCRIPT = @INSTALL_SCRIPT@
  273. INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
  274. LD = @LD@
  275. LDFLAGS = @LDFLAGS@
  276. LIBOBJS = @LIBOBJS@
  277. LIBOSIP_SO_VERSION = @LIBOSIP_SO_VERSION@
  278. LIBS = @LIBS@
  279. LIBTOOL = @LIBTOOL@
  280. LIPO = @LIPO@
  281. LN_S = @LN_S@
  282. LTLIBOBJS = @LTLIBOBJS@
  283. LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
  284. MAKEINFO = @MAKEINFO@
  285. MANIFEST_TOOL = @MANIFEST_TOOL@
  286. MKDIR_P = @MKDIR_P@
  287. NM = @NM@
  288. NMEDIT = @NMEDIT@
  289. OBJDUMP = @OBJDUMP@
  290. OBJEXT = @OBJEXT@
  291. OSIP_VERSION = @OSIP_VERSION@
  292. OTOOL = @OTOOL@
  293. OTOOL64 = @OTOOL64@
  294. PACKAGE = @PACKAGE@
  295. PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
  296. PACKAGE_NAME = @PACKAGE_NAME@
  297. PACKAGE_STRING = @PACKAGE_STRING@
  298. PACKAGE_TARNAME = @PACKAGE_TARNAME@
  299. PACKAGE_URL = @PACKAGE_URL@
  300. PACKAGE_VERSION = @PACKAGE_VERSION@
  301. PARSER_LIB = @PARSER_LIB@
  302. PATH_SEPARATOR = @PATH_SEPARATOR@
  303. PTHREAD_CC = @PTHREAD_CC@
  304. PTHREAD_CFLAGS = @PTHREAD_CFLAGS@
  305. PTHREAD_LIBS = @PTHREAD_LIBS@
  306. RANLIB = @RANLIB@
  307. SED = @SED@
  308. SET_MAKE = @SET_MAKE@
  309. SHELL = @SHELL@
  310. SIP_CFLAGS = @SIP_CFLAGS@
  311. SIP_EXTRA_FLAGS = @SIP_EXTRA_FLAGS@
  312. SIP_FSM_FLAGS = @SIP_FSM_FLAGS@
  313. SIP_PARSER_FLAGS = @SIP_PARSER_FLAGS@
  314. STRIP = @STRIP@
  315. VERSION = @VERSION@
  316. abs_builddir = @abs_builddir@
  317. abs_srcdir = @abs_srcdir@
  318. abs_top_builddir = @abs_top_builddir@
  319. abs_top_srcdir = @abs_top_srcdir@
  320. ac_ct_AR = @ac_ct_AR@
  321. ac_ct_CC = @ac_ct_CC@
  322. ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
  323. am__include = @am__include@
  324. am__leading_dot = @am__leading_dot@
  325. am__quote = @am__quote@
  326. am__tar = @am__tar@
  327. am__untar = @am__untar@
  328. ax_pthread_config = @ax_pthread_config@
  329. bindir = @bindir@
  330. build = @build@
  331. build_alias = @build_alias@
  332. build_cpu = @build_cpu@
  333. build_os = @build_os@
  334. build_vendor = @build_vendor@
  335. builddir = @builddir@
  336. datadir = @datadir@
  337. datarootdir = @datarootdir@
  338. docdir = @docdir@
  339. dvidir = @dvidir@
  340. exec_prefix = @exec_prefix@
  341. host = @host@
  342. host_alias = @host_alias@
  343. host_cpu = @host_cpu@
  344. host_os = @host_os@
  345. host_vendor = @host_vendor@
  346. htmldir = @htmldir@
  347. includedir = @includedir@
  348. infodir = @infodir@
  349. install_sh = @install_sh@
  350. libdir = @libdir@
  351. libexecdir = @libexecdir@
  352. localedir = @localedir@
  353. localstatedir = @localstatedir@
  354. mandir = @mandir@
  355. mkdir_p = @mkdir_p@
  356. oldincludedir = @oldincludedir@
  357. pdfdir = @pdfdir@
  358. prefix = @prefix@
  359. program_transform_name = @program_transform_name@
  360. psdir = @psdir@
  361. runstatedir = @runstatedir@
  362. sbindir = @sbindir@
  363. sharedstatedir = @sharedstatedir@
  364. srcdir = @srcdir@
  365. sysconfdir = @sysconfdir@
  366. target_alias = @target_alias@
  367. top_build_prefix = @top_build_prefix@
  368. top_builddir = @top_builddir@
  369. top_srcdir = @top_srcdir@
  370. ACLOCAL_AMFLAGS = -I scripts
  371. EXTRA_DIST = README BUGS FEATURES HISTORY autogen.sh libosip2.pc.in
  372. SUBDIRS = include src scripts help platform
  373. pkgconfigdir = $(libdir)/pkgconfig
  374. pkgconfig_DATA = libosip2.pc
  375. all: osip-config.h
  376. $(MAKE) $(AM_MAKEFLAGS) all-recursive
  377. .SUFFIXES:
  378. am--refresh: Makefile
  379. @:
  380. $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
  381. @for dep in $?; do \
  382. case '$(am__configure_deps)' in \
  383. *$$dep*) \
  384. echo ' cd $(srcdir) && $(AUTOMAKE) --gnu'; \
  385. $(am__cd) $(srcdir) && $(AUTOMAKE) --gnu \
  386. && exit 0; \
  387. exit 1;; \
  388. esac; \
  389. done; \
  390. echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \
  391. $(am__cd) $(top_srcdir) && \
  392. $(AUTOMAKE) --gnu Makefile
  393. Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  394. @case '$?' in \
  395. *config.status*) \
  396. echo ' $(SHELL) ./config.status'; \
  397. $(SHELL) ./config.status;; \
  398. *) \
  399. echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles)'; \
  400. cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles);; \
  401. esac;
  402. $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
  403. $(SHELL) ./config.status --recheck
  404. $(top_srcdir)/configure: $(am__configure_deps)
  405. $(am__cd) $(srcdir) && $(AUTOCONF)
  406. $(ACLOCAL_M4): $(am__aclocal_m4_deps)
  407. $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
  408. $(am__aclocal_m4_deps):
  409. osip-config.h: stamp-h1
  410. @test -f $@ || rm -f stamp-h1
  411. @test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1
  412. stamp-h1: $(srcdir)/osip-config.h.in $(top_builddir)/config.status
  413. @rm -f stamp-h1
  414. cd $(top_builddir) && $(SHELL) ./config.status osip-config.h
  415. $(srcdir)/osip-config.h.in: $(am__configure_deps)
  416. ($(am__cd) $(top_srcdir) && $(AUTOHEADER))
  417. rm -f stamp-h1
  418. touch $@
  419. distclean-hdr:
  420. -rm -f osip-config.h stamp-h1
  421. libosip2.pc: $(top_builddir)/config.status $(srcdir)/libosip2.pc.in
  422. cd $(top_builddir) && $(SHELL) ./config.status $@
  423. mostlyclean-libtool:
  424. -rm -f *.lo
  425. clean-libtool:
  426. -rm -rf .libs _libs
  427. distclean-libtool:
  428. -rm -f libtool config.lt
  429. install-pkgconfigDATA: $(pkgconfig_DATA)
  430. @$(NORMAL_INSTALL)
  431. @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
  432. if test -n "$$list"; then \
  433. echo " $(MKDIR_P) '$(DESTDIR)$(pkgconfigdir)'"; \
  434. $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)" || exit 1; \
  435. fi; \
  436. for p in $$list; do \
  437. if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
  438. echo "$$d$$p"; \
  439. done | $(am__base_list) | \
  440. while read files; do \
  441. echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgconfigdir)'"; \
  442. $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgconfigdir)" || exit $$?; \
  443. done
  444. uninstall-pkgconfigDATA:
  445. @$(NORMAL_UNINSTALL)
  446. @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
  447. files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
  448. dir='$(DESTDIR)$(pkgconfigdir)'; $(am__uninstall_files_from_dir)
  449. # This directory's subdirectories are mostly independent; you can cd
  450. # into them and run 'make' without going through this Makefile.
  451. # To change the values of 'make' variables: instead of editing Makefiles,
  452. # (1) if the variable is set in 'config.status', edit 'config.status'
  453. # (which will cause the Makefiles to be regenerated when you run 'make');
  454. # (2) otherwise, pass the desired values on the 'make' command line.
  455. $(am__recursive_targets):
  456. @fail=; \
  457. if $(am__make_keepgoing); then \
  458. failcom='fail=yes'; \
  459. else \
  460. failcom='exit 1'; \
  461. fi; \
  462. dot_seen=no; \
  463. target=`echo $@ | sed s/-recursive//`; \
  464. case "$@" in \
  465. distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
  466. *) list='$(SUBDIRS)' ;; \
  467. esac; \
  468. for subdir in $$list; do \
  469. echo "Making $$target in $$subdir"; \
  470. if test "$$subdir" = "."; then \
  471. dot_seen=yes; \
  472. local_target="$$target-am"; \
  473. else \
  474. local_target="$$target"; \
  475. fi; \
  476. ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
  477. || eval $$failcom; \
  478. done; \
  479. if test "$$dot_seen" = "no"; then \
  480. $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
  481. fi; test -z "$$fail"
  482. ID: $(am__tagged_files)
  483. $(am__define_uniq_tagged_files); mkid -fID $$unique
  484. tags: tags-recursive
  485. TAGS: tags
  486. tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  487. set x; \
  488. here=`pwd`; \
  489. if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
  490. include_option=--etags-include; \
  491. empty_fix=.; \
  492. else \
  493. include_option=--include; \
  494. empty_fix=; \
  495. fi; \
  496. list='$(SUBDIRS)'; for subdir in $$list; do \
  497. if test "$$subdir" = .; then :; else \
  498. test ! -f $$subdir/TAGS || \
  499. set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
  500. fi; \
  501. done; \
  502. $(am__define_uniq_tagged_files); \
  503. shift; \
  504. if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
  505. test -n "$$unique" || unique=$$empty_fix; \
  506. if test $$# -gt 0; then \
  507. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  508. "$$@" $$unique; \
  509. else \
  510. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  511. $$unique; \
  512. fi; \
  513. fi
  514. ctags: ctags-recursive
  515. CTAGS: ctags
  516. ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  517. $(am__define_uniq_tagged_files); \
  518. test -z "$(CTAGS_ARGS)$$unique" \
  519. || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
  520. $$unique
  521. GTAGS:
  522. here=`$(am__cd) $(top_builddir) && pwd` \
  523. && $(am__cd) $(top_srcdir) \
  524. && gtags -i $(GTAGS_ARGS) "$$here"
  525. cscope: cscope.files
  526. test ! -s cscope.files \
  527. || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS)
  528. clean-cscope:
  529. -rm -f cscope.files
  530. cscope.files: clean-cscope cscopelist
  531. cscopelist: cscopelist-recursive
  532. cscopelist-am: $(am__tagged_files)
  533. list='$(am__tagged_files)'; \
  534. case "$(srcdir)" in \
  535. [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
  536. *) sdir=$(subdir)/$(srcdir) ;; \
  537. esac; \
  538. for i in $$list; do \
  539. if test -f "$$i"; then \
  540. echo "$(subdir)/$$i"; \
  541. else \
  542. echo "$$sdir/$$i"; \
  543. fi; \
  544. done >> $(top_builddir)/cscope.files
  545. distclean-tags:
  546. -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
  547. -rm -f cscope.out cscope.in.out cscope.po.out cscope.files
  548. distdir: $(BUILT_SOURCES)
  549. $(MAKE) $(AM_MAKEFLAGS) distdir-am
  550. distdir-am: $(DISTFILES)
  551. $(am__remove_distdir)
  552. test -d "$(distdir)" || mkdir "$(distdir)"
  553. @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  554. topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  555. list='$(DISTFILES)'; \
  556. dist_files=`for file in $$list; do echo $$file; done | \
  557. sed -e "s|^$$srcdirstrip/||;t" \
  558. -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
  559. case $$dist_files in \
  560. */*) $(MKDIR_P) `echo "$$dist_files" | \
  561. sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
  562. sort -u` ;; \
  563. esac; \
  564. for file in $$dist_files; do \
  565. if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
  566. if test -d $$d/$$file; then \
  567. dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
  568. if test -d "$(distdir)/$$file"; then \
  569. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  570. fi; \
  571. if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
  572. cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
  573. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  574. fi; \
  575. cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
  576. else \
  577. test -f "$(distdir)/$$file" \
  578. || cp -p $$d/$$file "$(distdir)/$$file" \
  579. || exit 1; \
  580. fi; \
  581. done
  582. @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
  583. if test "$$subdir" = .; then :; else \
  584. $(am__make_dryrun) \
  585. || test -d "$(distdir)/$$subdir" \
  586. || $(MKDIR_P) "$(distdir)/$$subdir" \
  587. || exit 1; \
  588. dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
  589. $(am__relativize); \
  590. new_distdir=$$reldir; \
  591. dir1=$$subdir; dir2="$(top_distdir)"; \
  592. $(am__relativize); \
  593. new_top_distdir=$$reldir; \
  594. echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
  595. echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
  596. ($(am__cd) $$subdir && \
  597. $(MAKE) $(AM_MAKEFLAGS) \
  598. top_distdir="$$new_top_distdir" \
  599. distdir="$$new_distdir" \
  600. am__remove_distdir=: \
  601. am__skip_length_check=: \
  602. am__skip_mode_fix=: \
  603. distdir) \
  604. || exit 1; \
  605. fi; \
  606. done
  607. -test -n "$(am__skip_mode_fix)" \
  608. || find "$(distdir)" -type d ! -perm -755 \
  609. -exec chmod u+rwx,go+rx {} \; -o \
  610. ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
  611. ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
  612. ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
  613. || chmod -R a+r "$(distdir)"
  614. dist-gzip: distdir
  615. tardir=$(distdir) && $(am__tar) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).tar.gz
  616. $(am__post_remove_distdir)
  617. dist-bzip2: distdir
  618. tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
  619. $(am__post_remove_distdir)
  620. dist-lzip: distdir
  621. tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz
  622. $(am__post_remove_distdir)
  623. dist-xz: distdir
  624. tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
  625. $(am__post_remove_distdir)
  626. dist-tarZ: distdir
  627. @echo WARNING: "Support for distribution archives compressed with" \
  628. "legacy program 'compress' is deprecated." >&2
  629. @echo WARNING: "It will be removed altogether in Automake 2.0" >&2
  630. tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
  631. $(am__post_remove_distdir)
  632. dist-shar: distdir
  633. @echo WARNING: "Support for shar distribution archives is" \
  634. "deprecated." >&2
  635. @echo WARNING: "It will be removed altogether in Automake 2.0" >&2
  636. shar $(distdir) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).shar.gz
  637. $(am__post_remove_distdir)
  638. dist-zip: distdir
  639. -rm -f $(distdir).zip
  640. zip -rq $(distdir).zip $(distdir)
  641. $(am__post_remove_distdir)
  642. dist dist-all:
  643. $(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:'
  644. $(am__post_remove_distdir)
  645. # This target untars the dist file and tries a VPATH configuration. Then
  646. # it guarantees that the distribution is self-contained by making another
  647. # tarfile.
  648. distcheck: dist
  649. case '$(DIST_ARCHIVES)' in \
  650. *.tar.gz*) \
  651. eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).tar.gz | $(am__untar) ;;\
  652. *.tar.bz2*) \
  653. bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
  654. *.tar.lz*) \
  655. lzip -dc $(distdir).tar.lz | $(am__untar) ;;\
  656. *.tar.xz*) \
  657. xz -dc $(distdir).tar.xz | $(am__untar) ;;\
  658. *.tar.Z*) \
  659. uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
  660. *.shar.gz*) \
  661. eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).shar.gz | unshar ;;\
  662. *.zip*) \
  663. unzip $(distdir).zip ;;\
  664. esac
  665. chmod -R a-w $(distdir)
  666. chmod u+w $(distdir)
  667. mkdir $(distdir)/_build $(distdir)/_build/sub $(distdir)/_inst
  668. chmod a-w $(distdir)
  669. test -d $(distdir)/_build || exit 0; \
  670. dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
  671. && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
  672. && am__cwd=`pwd` \
  673. && $(am__cd) $(distdir)/_build/sub \
  674. && ../../configure \
  675. $(AM_DISTCHECK_CONFIGURE_FLAGS) \
  676. $(DISTCHECK_CONFIGURE_FLAGS) \
  677. --srcdir=../.. --prefix="$$dc_install_base" \
  678. && $(MAKE) $(AM_MAKEFLAGS) \
  679. && $(MAKE) $(AM_MAKEFLAGS) dvi \
  680. && $(MAKE) $(AM_MAKEFLAGS) check \
  681. && $(MAKE) $(AM_MAKEFLAGS) install \
  682. && $(MAKE) $(AM_MAKEFLAGS) installcheck \
  683. && $(MAKE) $(AM_MAKEFLAGS) uninstall \
  684. && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
  685. distuninstallcheck \
  686. && chmod -R a-w "$$dc_install_base" \
  687. && ({ \
  688. (cd ../.. && umask 077 && mkdir "$$dc_destdir") \
  689. && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
  690. && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
  691. && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
  692. distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
  693. } || { rm -rf "$$dc_destdir"; exit 1; }) \
  694. && rm -rf "$$dc_destdir" \
  695. && $(MAKE) $(AM_MAKEFLAGS) dist \
  696. && rm -rf $(DIST_ARCHIVES) \
  697. && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
  698. && cd "$$am__cwd" \
  699. || exit 1
  700. $(am__post_remove_distdir)
  701. @(echo "$(distdir) archives ready for distribution: "; \
  702. list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
  703. sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
  704. distuninstallcheck:
  705. @test -n '$(distuninstallcheck_dir)' || { \
  706. echo 'ERROR: trying to run $@ with an empty' \
  707. '$$(distuninstallcheck_dir)' >&2; \
  708. exit 1; \
  709. }; \
  710. $(am__cd) '$(distuninstallcheck_dir)' || { \
  711. echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \
  712. exit 1; \
  713. }; \
  714. test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \
  715. || { echo "ERROR: files left after uninstall:" ; \
  716. if test -n "$(DESTDIR)"; then \
  717. echo " (check DESTDIR support)"; \
  718. fi ; \
  719. $(distuninstallcheck_listfiles) ; \
  720. exit 1; } >&2
  721. distcleancheck: distclean
  722. @if test '$(srcdir)' = . ; then \
  723. echo "ERROR: distcleancheck can only run from a VPATH build" ; \
  724. exit 1 ; \
  725. fi
  726. @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
  727. || { echo "ERROR: files left in build directory after distclean:" ; \
  728. $(distcleancheck_listfiles) ; \
  729. exit 1; } >&2
  730. check-am: all-am
  731. check: check-recursive
  732. all-am: Makefile $(DATA) osip-config.h
  733. installdirs: installdirs-recursive
  734. installdirs-am:
  735. for dir in "$(DESTDIR)$(pkgconfigdir)"; do \
  736. test -z "$$dir" || $(MKDIR_P) "$$dir"; \
  737. done
  738. install: install-recursive
  739. install-exec: install-exec-recursive
  740. install-data: install-data-recursive
  741. uninstall: uninstall-recursive
  742. install-am: all-am
  743. @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
  744. installcheck: installcheck-recursive
  745. install-strip:
  746. if test -z '$(STRIP)'; then \
  747. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  748. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  749. install; \
  750. else \
  751. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  752. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  753. "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
  754. fi
  755. mostlyclean-generic:
  756. clean-generic:
  757. distclean-generic:
  758. -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
  759. -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
  760. maintainer-clean-generic:
  761. @echo "This command is intended for maintainers to use"
  762. @echo "it deletes files that may require special tools to rebuild."
  763. clean: clean-recursive
  764. clean-am: clean-generic clean-libtool mostlyclean-am
  765. distclean: distclean-recursive
  766. -rm -f $(am__CONFIG_DISTCLEAN_FILES)
  767. -rm -f Makefile
  768. distclean-am: clean-am distclean-generic distclean-hdr \
  769. distclean-libtool distclean-tags
  770. dvi: dvi-recursive
  771. dvi-am:
  772. html: html-recursive
  773. html-am:
  774. info: info-recursive
  775. info-am:
  776. install-data-am: install-pkgconfigDATA
  777. install-dvi: install-dvi-recursive
  778. install-dvi-am:
  779. install-exec-am:
  780. install-html: install-html-recursive
  781. install-html-am:
  782. install-info: install-info-recursive
  783. install-info-am:
  784. install-man:
  785. install-pdf: install-pdf-recursive
  786. install-pdf-am:
  787. install-ps: install-ps-recursive
  788. install-ps-am:
  789. installcheck-am:
  790. maintainer-clean: maintainer-clean-recursive
  791. -rm -f $(am__CONFIG_DISTCLEAN_FILES)
  792. -rm -rf $(top_srcdir)/autom4te.cache
  793. -rm -f Makefile
  794. maintainer-clean-am: distclean-am maintainer-clean-generic
  795. mostlyclean: mostlyclean-recursive
  796. mostlyclean-am: mostlyclean-generic mostlyclean-libtool
  797. pdf: pdf-recursive
  798. pdf-am:
  799. ps: ps-recursive
  800. ps-am:
  801. uninstall-am: uninstall-pkgconfigDATA
  802. .MAKE: $(am__recursive_targets) all install-am install-strip
  803. .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \
  804. am--refresh check check-am clean clean-cscope clean-generic \
  805. clean-libtool cscope cscopelist-am ctags ctags-am dist \
  806. dist-all dist-bzip2 dist-gzip dist-lzip dist-shar dist-tarZ \
  807. dist-xz dist-zip distcheck distclean distclean-generic \
  808. distclean-hdr distclean-libtool distclean-tags distcleancheck \
  809. distdir distuninstallcheck dvi dvi-am html html-am info \
  810. info-am install install-am install-data install-data-am \
  811. install-dvi install-dvi-am install-exec install-exec-am \
  812. install-html install-html-am install-info install-info-am \
  813. install-man install-pdf install-pdf-am install-pkgconfigDATA \
  814. install-ps install-ps-am install-strip installcheck \
  815. installcheck-am installdirs installdirs-am maintainer-clean \
  816. maintainer-clean-generic mostlyclean mostlyclean-generic \
  817. mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \
  818. uninstall-am uninstall-pkgconfigDATA
  819. .PRECIOUS: Makefile
  820. rpm-package:
  821. cd platform && $(MAKE) rpm-package
  822. upload: dist
  823. @echo "######## Maintainer only ##########";
  824. @echo "building files for upload in ftp://ftp-upload.gnu.org/incoming/ftp";
  825. @echo "building: $(PACKAGE)-$(VERSION).tar.gz.sig";
  826. gpg -b $(PACKAGE)-$(VERSION).tar.gz
  827. echo "version: 1.1" > $(PACKAGE)-$(VERSION).tar.gz.directive
  828. echo "directory: osip" >> $(PACKAGE)-$(VERSION).tar.gz.directive
  829. echo "filename: $(PACKAGE)-$(VERSION).tar.gz" >> $(PACKAGE)-$(VERSION).tar.gz.directive
  830. @echo "building: $(PACKAGE)-$(VERSION).tar.gz.directive.asc";
  831. gpg --clearsign $(PACKAGE)-$(VERSION).tar.gz.directive
  832. doxygen:
  833. doxygen $(top_srcdir)/help/doxygen/DoxyFile
  834. indent:
  835. @type clang-format --version >/dev/null 2>&1 || clang-format -i $(top_srcdir)/include/*/*.h
  836. @type clang-format --version >/dev/null 2>&1 || clang-format -i $(top_srcdir)/include/*/*/*.h
  837. @type clang-format --version >/dev/null 2>&1 || clang-format -i $(top_srcdir)/src/*/*.h
  838. @type clang-format --version >/dev/null 2>&1 || clang-format -i $(top_srcdir)/src/*/*.c
  839. rm -rf $(top_srcdir)/*/*/*.h~
  840. rm -rf $(top_srcdir)/*/*/*/*.h~
  841. rm -rf $(top_srcdir)/*/*/*.c~
  842. valgrind:
  843. cd src/test && $(MAKE) valgrind
  844. .PHONY: valgrind
  845. # Tell versions [3.59,3.63) of GNU make to not export all variables.
  846. # Otherwise a system limit (for SysV at least) may be exceeded.
  847. .NOEXPORT: