Makefile.in 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662
  1. # Makefile.in generated by automake 1.15 from Makefile.am.
  2. # @configure_input@
  3. # Copyright (C) 1994-2014 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. # example_c_encode_file - Simple FLAC file encoder using libFLAC
  13. # Copyright (C) 2007-2009 Josh Coalson
  14. # Copyright (C) 2011-2016 Xiph.Org Foundation
  15. #
  16. # This program is free software; you can redistribute it and/or
  17. # modify it under the terms of the GNU General Public License
  18. # as published by the Free Software Foundation; either version 2
  19. # of the License, or (at your option) any later version.
  20. #
  21. # This program is distributed in the hope that it will be useful,
  22. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  23. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  24. # GNU General Public License for more details.
  25. #
  26. # You should have received a copy of the GNU General Public License along
  27. # with this program; if not, write to the Free Software Foundation, Inc.,
  28. # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  29. VPATH = @srcdir@
  30. am__is_gnu_make = { \
  31. if test -z '$(MAKELEVEL)'; then \
  32. false; \
  33. elif test -n '$(MAKE_HOST)'; then \
  34. true; \
  35. elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
  36. true; \
  37. else \
  38. false; \
  39. fi; \
  40. }
  41. am__make_running_with_option = \
  42. case $${target_option-} in \
  43. ?) ;; \
  44. *) echo "am__make_running_with_option: internal error: invalid" \
  45. "target option '$${target_option-}' specified" >&2; \
  46. exit 1;; \
  47. esac; \
  48. has_opt=no; \
  49. sane_makeflags=$$MAKEFLAGS; \
  50. if $(am__is_gnu_make); then \
  51. sane_makeflags=$$MFLAGS; \
  52. else \
  53. case $$MAKEFLAGS in \
  54. *\\[\ \ ]*) \
  55. bs=\\; \
  56. sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
  57. | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
  58. esac; \
  59. fi; \
  60. skip_next=no; \
  61. strip_trailopt () \
  62. { \
  63. flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
  64. }; \
  65. for flg in $$sane_makeflags; do \
  66. test $$skip_next = yes && { skip_next=no; continue; }; \
  67. case $$flg in \
  68. *=*|--*) continue;; \
  69. -*I) strip_trailopt 'I'; skip_next=yes;; \
  70. -*I?*) strip_trailopt 'I';; \
  71. -*O) strip_trailopt 'O'; skip_next=yes;; \
  72. -*O?*) strip_trailopt 'O';; \
  73. -*l) strip_trailopt 'l'; skip_next=yes;; \
  74. -*l?*) strip_trailopt 'l';; \
  75. -[dEDm]) skip_next=yes;; \
  76. -[JT]) skip_next=yes;; \
  77. esac; \
  78. case $$flg in \
  79. *$$target_option*) has_opt=yes; break;; \
  80. esac; \
  81. done; \
  82. test $$has_opt = yes
  83. am__make_dryrun = (target_option=n; $(am__make_running_with_option))
  84. am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
  85. pkgdatadir = $(datadir)/@PACKAGE@
  86. pkgincludedir = $(includedir)/@PACKAGE@
  87. pkglibdir = $(libdir)/@PACKAGE@
  88. pkglibexecdir = $(libexecdir)/@PACKAGE@
  89. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
  90. install_sh_DATA = $(install_sh) -c -m 644
  91. install_sh_PROGRAM = $(install_sh) -c
  92. install_sh_SCRIPT = $(install_sh) -c
  93. INSTALL_HEADER = $(INSTALL_DATA)
  94. transform = $(program_transform_name)
  95. NORMAL_INSTALL = :
  96. PRE_INSTALL = :
  97. POST_INSTALL = :
  98. NORMAL_UNINSTALL = :
  99. PRE_UNINSTALL = :
  100. POST_UNINSTALL = :
  101. build_triplet = @build@
  102. host_triplet = @host@
  103. noinst_PROGRAMS = example_c_encode_file$(EXEEXT)
  104. subdir = examples/c/encode/file
  105. ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
  106. am__aclocal_m4_deps = $(top_srcdir)/m4/add_cflags.m4 \
  107. $(top_srcdir)/m4/add_cxxflags.m4 $(top_srcdir)/m4/bswap.m4 \
  108. $(top_srcdir)/m4/clang.m4 $(top_srcdir)/m4/codeset.m4 \
  109. $(top_srcdir)/m4/gcc_version.m4 $(top_srcdir)/m4/iconv.m4 \
  110. $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \
  111. $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libtool.m4 \
  112. $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
  113. $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
  114. $(top_srcdir)/m4/ogg.m4 $(top_srcdir)/m4/really_gcc.m4 \
  115. $(top_srcdir)/m4/stack_protect.m4 $(top_srcdir)/m4/xmms.m4 \
  116. $(top_srcdir)/configure.ac
  117. am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
  118. $(ACLOCAL_M4)
  119. DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
  120. mkinstalldirs = $(install_sh) -d
  121. CONFIG_HEADER = $(top_builddir)/config.h
  122. CONFIG_CLEAN_FILES =
  123. CONFIG_CLEAN_VPATH_FILES =
  124. PROGRAMS = $(noinst_PROGRAMS)
  125. am_example_c_encode_file_OBJECTS = main.$(OBJEXT)
  126. example_c_encode_file_OBJECTS = $(am_example_c_encode_file_OBJECTS)
  127. example_c_encode_file_DEPENDENCIES = \
  128. $(top_builddir)/src/libFLAC/libFLAC.la
  129. AM_V_lt = $(am__v_lt_@AM_V@)
  130. am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
  131. am__v_lt_0 = --silent
  132. am__v_lt_1 =
  133. AM_V_P = $(am__v_P_@AM_V@)
  134. am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
  135. am__v_P_0 = false
  136. am__v_P_1 = :
  137. AM_V_GEN = $(am__v_GEN_@AM_V@)
  138. am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
  139. am__v_GEN_0 = @echo " GEN " $@;
  140. am__v_GEN_1 =
  141. AM_V_at = $(am__v_at_@AM_V@)
  142. am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
  143. am__v_at_0 = @
  144. am__v_at_1 =
  145. DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
  146. depcomp = $(SHELL) $(top_srcdir)/depcomp
  147. am__depfiles_maybe = depfiles
  148. am__mv = mv -f
  149. COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
  150. $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
  151. LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
  152. $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
  153. $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
  154. $(AM_CFLAGS) $(CFLAGS)
  155. AM_V_CC = $(am__v_CC_@AM_V@)
  156. am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
  157. am__v_CC_0 = @echo " CC " $@;
  158. am__v_CC_1 =
  159. CCLD = $(CC)
  160. LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
  161. $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
  162. $(AM_LDFLAGS) $(LDFLAGS) -o $@
  163. AM_V_CCLD = $(am__v_CCLD_@AM_V@)
  164. am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
  165. am__v_CCLD_0 = @echo " CCLD " $@;
  166. am__v_CCLD_1 =
  167. SOURCES = $(example_c_encode_file_SOURCES)
  168. DIST_SOURCES = $(example_c_encode_file_SOURCES)
  169. am__can_run_installinfo = \
  170. case $$AM_UPDATE_INFO_DIR in \
  171. n|no|NO) false;; \
  172. *) (install-info --version) >/dev/null 2>&1;; \
  173. esac
  174. am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
  175. # Read a list of newline-separated strings from the standard input,
  176. # and print each of them once, without duplicates. Input order is
  177. # *not* preserved.
  178. am__uniquify_input = $(AWK) '\
  179. BEGIN { nonempty = 0; } \
  180. { items[$$0] = 1; nonempty = 1; } \
  181. END { if (nonempty) { for (i in items) print i; }; } \
  182. '
  183. # Make sure the list of sources is unique. This is necessary because,
  184. # e.g., the same source file might be shared among _SOURCES variables
  185. # for different programs/libraries.
  186. am__define_uniq_tagged_files = \
  187. list='$(am__tagged_files)'; \
  188. unique=`for i in $$list; do \
  189. if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  190. done | $(am__uniquify_input)`
  191. ETAGS = etags
  192. CTAGS = ctags
  193. am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp
  194. DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
  195. ACLOCAL = @ACLOCAL@
  196. AMTAR = @AMTAR@
  197. AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
  198. AR = @AR@
  199. AS = @AS@
  200. AUTOCONF = @AUTOCONF@
  201. AUTOHEADER = @AUTOHEADER@
  202. AUTOMAKE = @AUTOMAKE@
  203. AWK = @AWK@
  204. CC = @CC@
  205. CCAS = @CCAS@
  206. CCASDEPMODE = @CCASDEPMODE@
  207. CCASFLAGS = @CCASFLAGS@
  208. CCDEPMODE = @CCDEPMODE@
  209. CFLAGS = @CFLAGS@
  210. CPP = @CPP@
  211. CPPFLAGS = @CPPFLAGS@
  212. CXX = @CXX@
  213. CXXCPP = @CXXCPP@
  214. CXXDEPMODE = @CXXDEPMODE@
  215. CXXFLAGS = @CXXFLAGS@
  216. CYGPATH_W = @CYGPATH_W@
  217. DEFS = @DEFS@
  218. DEPDIR = @DEPDIR@
  219. DLLTOOL = @DLLTOOL@
  220. DOCBOOK_TO_MAN = @DOCBOOK_TO_MAN@
  221. DOXYGEN = @DOXYGEN@
  222. DSYMUTIL = @DSYMUTIL@
  223. DUMPBIN = @DUMPBIN@
  224. ECHO_C = @ECHO_C@
  225. ECHO_N = @ECHO_N@
  226. ECHO_T = @ECHO_T@
  227. EGREP = @EGREP@
  228. ENABLE_64_BIT_WORDS = @ENABLE_64_BIT_WORDS@
  229. EXEEXT = @EXEEXT@
  230. FGREP = @FGREP@
  231. FLAC__HAS_OGG = @FLAC__HAS_OGG@
  232. FLAC__TEST_LEVEL = @FLAC__TEST_LEVEL@
  233. FLAC__TEST_WITH_VALGRIND = @FLAC__TEST_WITH_VALGRIND@
  234. GCC_MAJOR_VERSION = @GCC_MAJOR_VERSION@
  235. GCC_MINOR_VERSION = @GCC_MINOR_VERSION@
  236. GCC_VERSION = @GCC_VERSION@
  237. GREP = @GREP@
  238. INSTALL = @INSTALL@
  239. INSTALL_DATA = @INSTALL_DATA@
  240. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  241. INSTALL_SCRIPT = @INSTALL_SCRIPT@
  242. INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
  243. LD = @LD@
  244. LDFLAGS = @LDFLAGS@
  245. LIBICONV = @LIBICONV@
  246. LIBOBJS = @LIBOBJS@
  247. LIBS = @LIBS@
  248. LIBTOOL = @LIBTOOL@
  249. LIB_CLOCK_GETTIME = @LIB_CLOCK_GETTIME@
  250. LIPO = @LIPO@
  251. LN_S = @LN_S@
  252. LTLIBICONV = @LTLIBICONV@
  253. LTLIBOBJS = @LTLIBOBJS@
  254. LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
  255. MAKEINFO = @MAKEINFO@
  256. MANIFEST_TOOL = @MANIFEST_TOOL@
  257. MKDIR_P = @MKDIR_P@
  258. NASM = @NASM@
  259. NM = @NM@
  260. NMEDIT = @NMEDIT@
  261. OBJDUMP = @OBJDUMP@
  262. OBJEXT = @OBJEXT@
  263. OBJ_FORMAT = @OBJ_FORMAT@
  264. OGG_CFLAGS = @OGG_CFLAGS@
  265. OGG_LIBS = @OGG_LIBS@
  266. OGG_PACKAGE = @OGG_PACKAGE@
  267. OTOOL = @OTOOL@
  268. OTOOL64 = @OTOOL64@
  269. PACKAGE = @PACKAGE@
  270. PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
  271. PACKAGE_NAME = @PACKAGE_NAME@
  272. PACKAGE_STRING = @PACKAGE_STRING@
  273. PACKAGE_TARNAME = @PACKAGE_TARNAME@
  274. PACKAGE_URL = @PACKAGE_URL@
  275. PACKAGE_VERSION = @PACKAGE_VERSION@
  276. PATH_SEPARATOR = @PATH_SEPARATOR@
  277. RANLIB = @RANLIB@
  278. SED = @SED@
  279. SET_MAKE = @SET_MAKE@
  280. SHELL = @SHELL@
  281. STRIP = @STRIP@
  282. VERSION = @VERSION@
  283. XMMS_CFLAGS = @XMMS_CFLAGS@
  284. XMMS_CONFIG = @XMMS_CONFIG@
  285. XMMS_DATA_DIR = @XMMS_DATA_DIR@
  286. XMMS_EFFECT_PLUGIN_DIR = @XMMS_EFFECT_PLUGIN_DIR@
  287. XMMS_GENERAL_PLUGIN_DIR = @XMMS_GENERAL_PLUGIN_DIR@
  288. XMMS_INPUT_PLUGIN_DIR = @XMMS_INPUT_PLUGIN_DIR@
  289. XMMS_LIBS = @XMMS_LIBS@
  290. XMMS_OUTPUT_PLUGIN_DIR = @XMMS_OUTPUT_PLUGIN_DIR@
  291. XMMS_PLUGIN_DIR = @XMMS_PLUGIN_DIR@
  292. XMMS_VERSION = @XMMS_VERSION@
  293. XMMS_VISUALIZATION_PLUGIN_DIR = @XMMS_VISUALIZATION_PLUGIN_DIR@
  294. abs_builddir = @abs_builddir@
  295. abs_srcdir = @abs_srcdir@
  296. abs_top_builddir = @abs_top_builddir@
  297. abs_top_srcdir = @abs_top_srcdir@
  298. ac_ct_AR = @ac_ct_AR@
  299. ac_ct_CC = @ac_ct_CC@
  300. ac_ct_CXX = @ac_ct_CXX@
  301. ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
  302. am__include = @am__include@
  303. am__leading_dot = @am__leading_dot@
  304. am__quote = @am__quote@
  305. am__tar = @am__tar@
  306. am__untar = @am__untar@
  307. bindir = @bindir@
  308. build = @build@
  309. build_alias = @build_alias@
  310. build_cpu = @build_cpu@
  311. build_os = @build_os@
  312. build_vendor = @build_vendor@
  313. builddir = @builddir@
  314. datadir = @datadir@
  315. datarootdir = @datarootdir@
  316. docdir = @docdir@
  317. dvidir = @dvidir@
  318. exec_prefix = @exec_prefix@
  319. host = @host@
  320. host_alias = @host_alias@
  321. host_cpu = @host_cpu@
  322. host_os = @host_os@
  323. host_vendor = @host_vendor@
  324. htmldir = @htmldir@
  325. includedir = @includedir@
  326. infodir = @infodir@
  327. install_sh = @install_sh@
  328. libdir = @libdir@
  329. libexecdir = @libexecdir@
  330. localedir = @localedir@
  331. localstatedir = @localstatedir@
  332. mandir = @mandir@
  333. mkdir_p = @mkdir_p@
  334. oldincludedir = @oldincludedir@
  335. pdfdir = @pdfdir@
  336. prefix = @prefix@
  337. program_transform_name = @program_transform_name@
  338. psdir = @psdir@
  339. runstatedir = @runstatedir@
  340. sbindir = @sbindir@
  341. sharedstatedir = @sharedstatedir@
  342. srcdir = @srcdir@
  343. sysconfdir = @sysconfdir@
  344. target_alias = @target_alias@
  345. top_build_prefix = @top_build_prefix@
  346. top_builddir = @top_builddir@
  347. top_srcdir = @top_srcdir@
  348. EXTRA_DIST = \
  349. Makefile.lite \
  350. example_c_encode_file.vcproj \
  351. example_c_encode_file.vcxproj \
  352. example_c_encode_file.vcxproj.filters
  353. AM_CPPFLAGS = -I$(top_builddir) -I$(srcdir)/include -I$(top_srcdir)/include
  354. example_c_encode_file_LDADD = \
  355. $(top_builddir)/src/libFLAC/libFLAC.la \
  356. @OGG_LIBS@ \
  357. -lm
  358. example_c_encode_file_SOURCES = main.c
  359. CLEANFILES = example_c_encode_file.exe
  360. all: all-am
  361. .SUFFIXES:
  362. .SUFFIXES: .c .lo .o .obj
  363. $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
  364. @for dep in $?; do \
  365. case '$(am__configure_deps)' in \
  366. *$$dep*) \
  367. ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
  368. && { if test -f $@; then exit 0; else break; fi; }; \
  369. exit 1;; \
  370. esac; \
  371. done; \
  372. echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign examples/c/encode/file/Makefile'; \
  373. $(am__cd) $(top_srcdir) && \
  374. $(AUTOMAKE) --foreign examples/c/encode/file/Makefile
  375. Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  376. @case '$?' in \
  377. *config.status*) \
  378. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
  379. *) \
  380. echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
  381. cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
  382. esac;
  383. $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
  384. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  385. $(top_srcdir)/configure: $(am__configure_deps)
  386. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  387. $(ACLOCAL_M4): $(am__aclocal_m4_deps)
  388. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  389. $(am__aclocal_m4_deps):
  390. clean-noinstPROGRAMS:
  391. @list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \
  392. echo " rm -f" $$list; \
  393. rm -f $$list || exit $$?; \
  394. test -n "$(EXEEXT)" || exit 0; \
  395. list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
  396. echo " rm -f" $$list; \
  397. rm -f $$list
  398. example_c_encode_file$(EXEEXT): $(example_c_encode_file_OBJECTS) $(example_c_encode_file_DEPENDENCIES) $(EXTRA_example_c_encode_file_DEPENDENCIES)
  399. @rm -f example_c_encode_file$(EXEEXT)
  400. $(AM_V_CCLD)$(LINK) $(example_c_encode_file_OBJECTS) $(example_c_encode_file_LDADD) $(LIBS)
  401. mostlyclean-compile:
  402. -rm -f *.$(OBJEXT)
  403. distclean-compile:
  404. -rm -f *.tab.c
  405. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/main.Po@am__quote@
  406. .c.o:
  407. @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
  408. @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
  409. @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
  410. @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
  411. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  412. @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $<
  413. .c.obj:
  414. @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\
  415. @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\
  416. @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
  417. @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
  418. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  419. @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
  420. .c.lo:
  421. @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\
  422. @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
  423. @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo
  424. @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
  425. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  426. @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<
  427. mostlyclean-libtool:
  428. -rm -f *.lo
  429. clean-libtool:
  430. -rm -rf .libs _libs
  431. ID: $(am__tagged_files)
  432. $(am__define_uniq_tagged_files); mkid -fID $$unique
  433. tags: tags-am
  434. TAGS: tags
  435. tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  436. set x; \
  437. here=`pwd`; \
  438. $(am__define_uniq_tagged_files); \
  439. shift; \
  440. if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
  441. test -n "$$unique" || unique=$$empty_fix; \
  442. if test $$# -gt 0; then \
  443. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  444. "$$@" $$unique; \
  445. else \
  446. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  447. $$unique; \
  448. fi; \
  449. fi
  450. ctags: ctags-am
  451. CTAGS: ctags
  452. ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  453. $(am__define_uniq_tagged_files); \
  454. test -z "$(CTAGS_ARGS)$$unique" \
  455. || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
  456. $$unique
  457. GTAGS:
  458. here=`$(am__cd) $(top_builddir) && pwd` \
  459. && $(am__cd) $(top_srcdir) \
  460. && gtags -i $(GTAGS_ARGS) "$$here"
  461. cscopelist: cscopelist-am
  462. cscopelist-am: $(am__tagged_files)
  463. list='$(am__tagged_files)'; \
  464. case "$(srcdir)" in \
  465. [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
  466. *) sdir=$(subdir)/$(srcdir) ;; \
  467. esac; \
  468. for i in $$list; do \
  469. if test -f "$$i"; then \
  470. echo "$(subdir)/$$i"; \
  471. else \
  472. echo "$$sdir/$$i"; \
  473. fi; \
  474. done >> $(top_builddir)/cscope.files
  475. distclean-tags:
  476. -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
  477. distdir: $(DISTFILES)
  478. @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  479. topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  480. list='$(DISTFILES)'; \
  481. dist_files=`for file in $$list; do echo $$file; done | \
  482. sed -e "s|^$$srcdirstrip/||;t" \
  483. -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
  484. case $$dist_files in \
  485. */*) $(MKDIR_P) `echo "$$dist_files" | \
  486. sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
  487. sort -u` ;; \
  488. esac; \
  489. for file in $$dist_files; do \
  490. if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
  491. if test -d $$d/$$file; then \
  492. dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
  493. if test -d "$(distdir)/$$file"; then \
  494. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  495. fi; \
  496. if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
  497. cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
  498. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  499. fi; \
  500. cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
  501. else \
  502. test -f "$(distdir)/$$file" \
  503. || cp -p $$d/$$file "$(distdir)/$$file" \
  504. || exit 1; \
  505. fi; \
  506. done
  507. check-am: all-am
  508. check: check-am
  509. all-am: Makefile $(PROGRAMS)
  510. installdirs:
  511. install: install-am
  512. install-exec: install-exec-am
  513. install-data: install-data-am
  514. uninstall: uninstall-am
  515. install-am: all-am
  516. @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
  517. installcheck: installcheck-am
  518. install-strip:
  519. if test -z '$(STRIP)'; then \
  520. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  521. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  522. install; \
  523. else \
  524. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  525. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  526. "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
  527. fi
  528. mostlyclean-generic:
  529. clean-generic:
  530. -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
  531. distclean-generic:
  532. -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
  533. -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
  534. maintainer-clean-generic:
  535. @echo "This command is intended for maintainers to use"
  536. @echo "it deletes files that may require special tools to rebuild."
  537. clean: clean-am
  538. clean-am: clean-generic clean-libtool clean-noinstPROGRAMS \
  539. mostlyclean-am
  540. distclean: distclean-am
  541. -rm -rf ./$(DEPDIR)
  542. -rm -f Makefile
  543. distclean-am: clean-am distclean-compile distclean-generic \
  544. distclean-tags
  545. dvi: dvi-am
  546. dvi-am:
  547. html: html-am
  548. html-am:
  549. info: info-am
  550. info-am:
  551. install-data-am:
  552. install-dvi: install-dvi-am
  553. install-dvi-am:
  554. install-exec-am:
  555. install-html: install-html-am
  556. install-html-am:
  557. install-info: install-info-am
  558. install-info-am:
  559. install-man:
  560. install-pdf: install-pdf-am
  561. install-pdf-am:
  562. install-ps: install-ps-am
  563. install-ps-am:
  564. installcheck-am:
  565. maintainer-clean: maintainer-clean-am
  566. -rm -rf ./$(DEPDIR)
  567. -rm -f Makefile
  568. maintainer-clean-am: distclean-am maintainer-clean-generic
  569. mostlyclean: mostlyclean-am
  570. mostlyclean-am: mostlyclean-compile mostlyclean-generic \
  571. mostlyclean-libtool
  572. pdf: pdf-am
  573. pdf-am:
  574. ps: ps-am
  575. ps-am:
  576. uninstall-am:
  577. .MAKE: install-am install-strip
  578. .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \
  579. clean-libtool clean-noinstPROGRAMS cscopelist-am ctags \
  580. ctags-am distclean distclean-compile distclean-generic \
  581. distclean-libtool distclean-tags distdir dvi dvi-am html \
  582. html-am info info-am install install-am install-data \
  583. install-data-am install-dvi install-dvi-am install-exec \
  584. install-exec-am install-html install-html-am install-info \
  585. install-info-am install-man install-pdf install-pdf-am \
  586. install-ps install-ps-am install-strip installcheck \
  587. installcheck-am installdirs maintainer-clean \
  588. maintainer-clean-generic mostlyclean mostlyclean-compile \
  589. mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
  590. tags tags-am uninstall uninstall-am
  591. .PRECIOUS: Makefile
  592. # Tell versions [3.59,3.63) of GNU make to not export all variables.
  593. # Otherwise a system limit (for SysV at least) may be exceeded.
  594. .NOEXPORT: