Makefile.in 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860
  1. # Makefile.in generated by automake 1.14.1 from Makefile.am.
  2. # @configure_input@
  3. # Copyright (C) 1994-2013 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. # Copyright (c) 2003 Sun Microsystems, Inc. All Rights Reserved.
  13. #
  14. # Redistribution and use in source and binary forms, with or without
  15. # modification, are permitted provided that the following conditions
  16. # are met:
  17. #
  18. # Redistribution of source code must retain the above copyright
  19. # notice, this list of conditions and the following disclaimer.
  20. #
  21. # Redistribution in binary form must reproduce the above copyright
  22. # notice, this list of conditions and the following disclaimer in the
  23. # documentation and/or other materials provided with the distribution.
  24. #
  25. # Neither the name of Sun Microsystems, Inc. or the names of
  26. # contributors may be used to endorse or promote products derived
  27. # from this software without specific prior written permission.
  28. #
  29. # This software is provided "AS IS," without a warranty of any kind.
  30. # ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES,
  31. # INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A
  32. # PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED.
  33. # SUN MICROSYSTEMS, INC. ("SUN") AND ITS LICENSORS SHALL NOT BE LIABLE
  34. # FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING
  35. # OR DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL
  36. # SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA,
  37. # OR FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR
  38. # PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF
  39. # LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE THIS SOFTWARE,
  40. # EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
  41. VPATH = @srcdir@
  42. am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
  43. am__make_running_with_option = \
  44. case $${target_option-} in \
  45. ?) ;; \
  46. *) echo "am__make_running_with_option: internal error: invalid" \
  47. "target option '$${target_option-}' specified" >&2; \
  48. exit 1;; \
  49. esac; \
  50. has_opt=no; \
  51. sane_makeflags=$$MAKEFLAGS; \
  52. if $(am__is_gnu_make); then \
  53. sane_makeflags=$$MFLAGS; \
  54. else \
  55. case $$MAKEFLAGS in \
  56. *\\[\ \ ]*) \
  57. bs=\\; \
  58. sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
  59. | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
  60. esac; \
  61. fi; \
  62. skip_next=no; \
  63. strip_trailopt () \
  64. { \
  65. flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
  66. }; \
  67. for flg in $$sane_makeflags; do \
  68. test $$skip_next = yes && { skip_next=no; continue; }; \
  69. case $$flg in \
  70. *=*|--*) continue;; \
  71. -*I) strip_trailopt 'I'; skip_next=yes;; \
  72. -*I?*) strip_trailopt 'I';; \
  73. -*O) strip_trailopt 'O'; skip_next=yes;; \
  74. -*O?*) strip_trailopt 'O';; \
  75. -*l) strip_trailopt 'l'; skip_next=yes;; \
  76. -*l?*) strip_trailopt 'l';; \
  77. -[dEDm]) skip_next=yes;; \
  78. -[JT]) skip_next=yes;; \
  79. esac; \
  80. case $$flg in \
  81. *$$target_option*) has_opt=yes; break;; \
  82. esac; \
  83. done; \
  84. test $$has_opt = yes
  85. am__make_dryrun = (target_option=n; $(am__make_running_with_option))
  86. am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
  87. pkgdatadir = $(datadir)/@PACKAGE@
  88. pkgincludedir = $(includedir)/@PACKAGE@
  89. pkglibdir = $(libdir)/@PACKAGE@
  90. pkglibexecdir = $(libexecdir)/@PACKAGE@
  91. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
  92. install_sh_DATA = $(install_sh) -c -m 644
  93. install_sh_PROGRAM = $(install_sh) -c
  94. install_sh_SCRIPT = $(install_sh) -c
  95. INSTALL_HEADER = $(INSTALL_DATA)
  96. transform = $(program_transform_name)
  97. NORMAL_INSTALL = :
  98. PRE_INSTALL = :
  99. POST_INSTALL = :
  100. NORMAL_UNINSTALL = :
  101. PRE_UNINSTALL = :
  102. POST_UNINSTALL = :
  103. build_triplet = @build@
  104. host_triplet = @host@
  105. target_triplet = @target@
  106. bin_PROGRAMS = ipmitool$(EXEEXT)
  107. sbin_PROGRAMS = ipmievd$(EXEEXT)
  108. subdir = src
  109. DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
  110. $(top_srcdir)/depcomp
  111. ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
  112. am__aclocal_m4_deps = $(top_srcdir)/configure.ac
  113. am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
  114. $(ACLOCAL_M4)
  115. mkinstalldirs = $(install_sh) -d
  116. CONFIG_HEADER = $(top_builddir)/config.h
  117. CONFIG_CLEAN_FILES =
  118. CONFIG_CLEAN_VPATH_FILES =
  119. am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(sbindir)"
  120. PROGRAMS = $(bin_PROGRAMS) $(sbin_PROGRAMS)
  121. am_ipmievd_OBJECTS = ipmievd.$(OBJEXT)
  122. ipmievd_OBJECTS = $(am_ipmievd_OBJECTS)
  123. ipmievd_DEPENDENCIES = $(top_builddir)/lib/libipmitool.la \
  124. plugins/libintf.la
  125. AM_V_lt = $(am__v_lt_@AM_V@)
  126. am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
  127. am__v_lt_0 = --silent
  128. am__v_lt_1 =
  129. am_ipmitool_OBJECTS = ipmitool.$(OBJEXT) ipmishell.$(OBJEXT)
  130. ipmitool_OBJECTS = $(am_ipmitool_OBJECTS)
  131. ipmitool_DEPENDENCIES = $(top_builddir)/lib/libipmitool.la \
  132. plugins/libintf.la
  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 = $(ipmievd_SOURCES) $(ipmitool_SOURCES)
  168. DIST_SOURCES = $(ipmievd_SOURCES) $(ipmitool_SOURCES)
  169. RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
  170. ctags-recursive dvi-recursive html-recursive info-recursive \
  171. install-data-recursive install-dvi-recursive \
  172. install-exec-recursive install-html-recursive \
  173. install-info-recursive install-pdf-recursive \
  174. install-ps-recursive install-recursive installcheck-recursive \
  175. installdirs-recursive pdf-recursive ps-recursive \
  176. tags-recursive uninstall-recursive
  177. am__can_run_installinfo = \
  178. case $$AM_UPDATE_INFO_DIR in \
  179. n|no|NO) false;; \
  180. *) (install-info --version) >/dev/null 2>&1;; \
  181. esac
  182. RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
  183. distclean-recursive maintainer-clean-recursive
  184. am__recursive_targets = \
  185. $(RECURSIVE_TARGETS) \
  186. $(RECURSIVE_CLEAN_TARGETS) \
  187. $(am__extra_recursive_targets)
  188. AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
  189. distdir
  190. am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
  191. # Read a list of newline-separated strings from the standard input,
  192. # and print each of them once, without duplicates. Input order is
  193. # *not* preserved.
  194. am__uniquify_input = $(AWK) '\
  195. BEGIN { nonempty = 0; } \
  196. { items[$$0] = 1; nonempty = 1; } \
  197. END { if (nonempty) { for (i in items) print i; }; } \
  198. '
  199. # Make sure the list of sources is unique. This is necessary because,
  200. # e.g., the same source file might be shared among _SOURCES variables
  201. # for different programs/libraries.
  202. am__define_uniq_tagged_files = \
  203. list='$(am__tagged_files)'; \
  204. unique=`for i in $$list; do \
  205. if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  206. done | $(am__uniquify_input)`
  207. ETAGS = etags
  208. CTAGS = ctags
  209. DIST_SUBDIRS = $(SUBDIRS)
  210. DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
  211. am__relativize = \
  212. dir0=`pwd`; \
  213. sed_first='s,^\([^/]*\)/.*$$,\1,'; \
  214. sed_rest='s,^[^/]*/*,,'; \
  215. sed_last='s,^.*/\([^/]*\)$$,\1,'; \
  216. sed_butlast='s,/*[^/]*$$,,'; \
  217. while test -n "$$dir1"; do \
  218. first=`echo "$$dir1" | sed -e "$$sed_first"`; \
  219. if test "$$first" != "."; then \
  220. if test "$$first" = ".."; then \
  221. dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
  222. dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
  223. else \
  224. first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
  225. if test "$$first2" = "$$first"; then \
  226. dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
  227. else \
  228. dir2="../$$dir2"; \
  229. fi; \
  230. dir0="$$dir0"/"$$first"; \
  231. fi; \
  232. fi; \
  233. dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
  234. done; \
  235. reldir="$$dir2"
  236. ACLOCAL = @ACLOCAL@
  237. AMTAR = @AMTAR@
  238. AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
  239. AR = @AR@
  240. ARCH = @ARCH@
  241. AUTOCONF = @AUTOCONF@
  242. AUTOHEADER = @AUTOHEADER@
  243. AUTOMAKE = @AUTOMAKE@
  244. AWK = @AWK@
  245. BASEDIR = @BASEDIR@
  246. CC = @CC@
  247. CCDEPMODE = @CCDEPMODE@
  248. CFLAGS = @CFLAGS@
  249. CPP = @CPP@
  250. CPPFLAGS = @CPPFLAGS@
  251. CYGPATH_W = @CYGPATH_W@
  252. DEFS = @DEFS@
  253. DEPDIR = @DEPDIR@
  254. DISTRO = @DISTRO@
  255. DLLTOOL = @DLLTOOL@
  256. DSYMUTIL = @DSYMUTIL@
  257. DUMPBIN = @DUMPBIN@
  258. ECHO_C = @ECHO_C@
  259. ECHO_N = @ECHO_N@
  260. ECHO_T = @ECHO_T@
  261. EGREP = @EGREP@
  262. EXEEXT = @EXEEXT@
  263. FGREP = @FGREP@
  264. GREP = @GREP@
  265. INSTALL = @INSTALL@
  266. INSTALL_DATA = @INSTALL_DATA@
  267. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  268. INSTALL_SCRIPT = @INSTALL_SCRIPT@
  269. INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
  270. INTF_BMC = @INTF_BMC@
  271. INTF_BMC_LIB = @INTF_BMC_LIB@
  272. INTF_DUMMY = @INTF_DUMMY@
  273. INTF_DUMMY_LIB = @INTF_DUMMY_LIB@
  274. INTF_FREE = @INTF_FREE@
  275. INTF_FREE_LIB = @INTF_FREE_LIB@
  276. INTF_IMB = @INTF_IMB@
  277. INTF_IMB_LIB = @INTF_IMB_LIB@
  278. INTF_LAN = @INTF_LAN@
  279. INTF_LANPLUS = @INTF_LANPLUS@
  280. INTF_LANPLUS_LIB = @INTF_LANPLUS_LIB@
  281. INTF_LAN_LIB = @INTF_LAN_LIB@
  282. INTF_LIPMI = @INTF_LIPMI@
  283. INTF_LIPMI_LIB = @INTF_LIPMI_LIB@
  284. INTF_OPEN = @INTF_OPEN@
  285. INTF_OPEN_LIB = @INTF_OPEN_LIB@
  286. INTF_SERIAL = @INTF_SERIAL@
  287. INTF_SERIAL_LIB = @INTF_SERIAL_LIB@
  288. INTF_USB = @INTF_USB@
  289. INTF_USB_LIB = @INTF_USB_LIB@
  290. IPMITOOL_INTF_LIB = @IPMITOOL_INTF_LIB@
  291. LD = @LD@
  292. LDFLAGS = @LDFLAGS@
  293. LIBOBJS = @LIBOBJS@
  294. LIBS = @LIBS@
  295. LIBTOOL = @LIBTOOL@
  296. LIPO = @LIPO@
  297. LN_S = @LN_S@
  298. LTLIBOBJS = @LTLIBOBJS@
  299. MAKEINFO = @MAKEINFO@
  300. MANIFEST_TOOL = @MANIFEST_TOOL@
  301. MKDIR_P = @MKDIR_P@
  302. NM = @NM@
  303. NMEDIT = @NMEDIT@
  304. OBJDUMP = @OBJDUMP@
  305. OBJEXT = @OBJEXT@
  306. OS = @OS@
  307. OTOOL = @OTOOL@
  308. OTOOL64 = @OTOOL64@
  309. PACKAGE = @PACKAGE@
  310. PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
  311. PACKAGE_NAME = @PACKAGE_NAME@
  312. PACKAGE_STRING = @PACKAGE_STRING@
  313. PACKAGE_TARNAME = @PACKAGE_TARNAME@
  314. PACKAGE_URL = @PACKAGE_URL@
  315. PACKAGE_VERSION = @PACKAGE_VERSION@
  316. PATH_SEPARATOR = @PATH_SEPARATOR@
  317. POW_LIB = @POW_LIB@
  318. PSTAMP = @PSTAMP@
  319. RANLIB = @RANLIB@
  320. RPMBUILD = @RPMBUILD@
  321. RPM_RELEASE = @RPM_RELEASE@
  322. SED = @SED@
  323. SET_MAKE = @SET_MAKE@
  324. SHELL = @SHELL@
  325. STRIP = @STRIP@
  326. VERSION = @VERSION@
  327. abs_builddir = @abs_builddir@
  328. abs_srcdir = @abs_srcdir@
  329. abs_top_builddir = @abs_top_builddir@
  330. abs_top_srcdir = @abs_top_srcdir@
  331. ac_configure_args = @ac_configure_args@
  332. ac_ct_AR = @ac_ct_AR@
  333. ac_ct_CC = @ac_ct_CC@
  334. ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
  335. am__include = @am__include@
  336. am__leading_dot = @am__leading_dot@
  337. am__quote = @am__quote@
  338. am__tar = @am__tar@
  339. am__untar = @am__untar@
  340. bindir = @bindir@
  341. build = @build@
  342. build_alias = @build_alias@
  343. build_cpu = @build_cpu@
  344. build_os = @build_os@
  345. build_vendor = @build_vendor@
  346. builddir = @builddir@
  347. datadir = @datadir@
  348. datarootdir = @datarootdir@
  349. docdir = @docdir@
  350. dvidir = @dvidir@
  351. exec_prefix = @exec_prefix@
  352. host = @host@
  353. host_alias = @host_alias@
  354. host_cpu = @host_cpu@
  355. host_os = @host_os@
  356. host_vendor = @host_vendor@
  357. htmldir = @htmldir@
  358. includedir = @includedir@
  359. infodir = @infodir@
  360. install_sh = @install_sh@
  361. libdir = @libdir@
  362. libexecdir = @libexecdir@
  363. localedir = @localedir@
  364. localstatedir = @localstatedir@
  365. mandir = @mandir@
  366. mkdir_p = @mkdir_p@
  367. oldincludedir = @oldincludedir@
  368. pdfdir = @pdfdir@
  369. prefix = @prefix@
  370. program_transform_name = @program_transform_name@
  371. psdir = @psdir@
  372. sbindir = @sbindir@
  373. sharedstatedir = @sharedstatedir@
  374. srcdir = @srcdir@
  375. sysconfdir = @sysconfdir@
  376. target = @target@
  377. target_alias = @target_alias@
  378. target_cpu = @target_cpu@
  379. target_os = @target_os@
  380. target_vendor = @target_vendor@
  381. top_build_prefix = @top_build_prefix@
  382. top_builddir = @top_builddir@
  383. top_srcdir = @top_srcdir@
  384. AM_CPPFLAGS = -I$(top_srcdir)/include
  385. SUBDIRS = plugins
  386. MAINTAINERCLEANFILES = Makefile.in
  387. ipmitool_SOURCES = ipmitool.c ipmishell.c
  388. ipmitool_LDADD = $(top_builddir)/lib/libipmitool.la plugins/libintf.la
  389. ipmievd_SOURCES = ipmievd.c
  390. ipmievd_LDADD = $(top_builddir)/lib/libipmitool.la plugins/libintf.la
  391. all: all-recursive
  392. .SUFFIXES:
  393. .SUFFIXES: .c .lo .o .obj
  394. $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
  395. @for dep in $?; do \
  396. case '$(am__configure_deps)' in \
  397. *$$dep*) \
  398. ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
  399. && { if test -f $@; then exit 0; else break; fi; }; \
  400. exit 1;; \
  401. esac; \
  402. done; \
  403. echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/Makefile'; \
  404. $(am__cd) $(top_srcdir) && \
  405. $(AUTOMAKE) --foreign src/Makefile
  406. .PRECIOUS: Makefile
  407. Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  408. @case '$?' in \
  409. *config.status*) \
  410. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
  411. *) \
  412. echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
  413. cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
  414. esac;
  415. $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
  416. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  417. $(top_srcdir)/configure: $(am__configure_deps)
  418. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  419. $(ACLOCAL_M4): $(am__aclocal_m4_deps)
  420. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  421. $(am__aclocal_m4_deps):
  422. install-binPROGRAMS: $(bin_PROGRAMS)
  423. @$(NORMAL_INSTALL)
  424. @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
  425. if test -n "$$list"; then \
  426. echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \
  427. $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \
  428. fi; \
  429. for p in $$list; do echo "$$p $$p"; done | \
  430. sed 's/$(EXEEXT)$$//' | \
  431. while read p p1; do if test -f $$p \
  432. || test -f $$p1 \
  433. ; then echo "$$p"; echo "$$p"; else :; fi; \
  434. done | \
  435. sed -e 'p;s,.*/,,;n;h' \
  436. -e 's|.*|.|' \
  437. -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
  438. sed 'N;N;N;s,\n, ,g' | \
  439. $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
  440. { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
  441. if ($$2 == $$4) files[d] = files[d] " " $$1; \
  442. else { print "f", $$3 "/" $$4, $$1; } } \
  443. END { for (d in files) print "f", d, files[d] }' | \
  444. while read type dir files; do \
  445. if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
  446. test -z "$$files" || { \
  447. echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \
  448. $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \
  449. } \
  450. ; done
  451. uninstall-binPROGRAMS:
  452. @$(NORMAL_UNINSTALL)
  453. @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
  454. files=`for p in $$list; do echo "$$p"; done | \
  455. sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
  456. -e 's/$$/$(EXEEXT)/' \
  457. `; \
  458. test -n "$$list" || exit 0; \
  459. echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \
  460. cd "$(DESTDIR)$(bindir)" && rm -f $$files
  461. clean-binPROGRAMS:
  462. @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \
  463. echo " rm -f" $$list; \
  464. rm -f $$list || exit $$?; \
  465. test -n "$(EXEEXT)" || exit 0; \
  466. list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
  467. echo " rm -f" $$list; \
  468. rm -f $$list
  469. install-sbinPROGRAMS: $(sbin_PROGRAMS)
  470. @$(NORMAL_INSTALL)
  471. @list='$(sbin_PROGRAMS)'; test -n "$(sbindir)" || list=; \
  472. if test -n "$$list"; then \
  473. echo " $(MKDIR_P) '$(DESTDIR)$(sbindir)'"; \
  474. $(MKDIR_P) "$(DESTDIR)$(sbindir)" || exit 1; \
  475. fi; \
  476. for p in $$list; do echo "$$p $$p"; done | \
  477. sed 's/$(EXEEXT)$$//' | \
  478. while read p p1; do if test -f $$p \
  479. || test -f $$p1 \
  480. ; then echo "$$p"; echo "$$p"; else :; fi; \
  481. done | \
  482. sed -e 'p;s,.*/,,;n;h' \
  483. -e 's|.*|.|' \
  484. -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
  485. sed 'N;N;N;s,\n, ,g' | \
  486. $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
  487. { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
  488. if ($$2 == $$4) files[d] = files[d] " " $$1; \
  489. else { print "f", $$3 "/" $$4, $$1; } } \
  490. END { for (d in files) print "f", d, files[d] }' | \
  491. while read type dir files; do \
  492. if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
  493. test -z "$$files" || { \
  494. echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(sbindir)$$dir'"; \
  495. $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(sbindir)$$dir" || exit $$?; \
  496. } \
  497. ; done
  498. uninstall-sbinPROGRAMS:
  499. @$(NORMAL_UNINSTALL)
  500. @list='$(sbin_PROGRAMS)'; test -n "$(sbindir)" || list=; \
  501. files=`for p in $$list; do echo "$$p"; done | \
  502. sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
  503. -e 's/$$/$(EXEEXT)/' \
  504. `; \
  505. test -n "$$list" || exit 0; \
  506. echo " ( cd '$(DESTDIR)$(sbindir)' && rm -f" $$files ")"; \
  507. cd "$(DESTDIR)$(sbindir)" && rm -f $$files
  508. clean-sbinPROGRAMS:
  509. @list='$(sbin_PROGRAMS)'; test -n "$$list" || exit 0; \
  510. echo " rm -f" $$list; \
  511. rm -f $$list || exit $$?; \
  512. test -n "$(EXEEXT)" || exit 0; \
  513. list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
  514. echo " rm -f" $$list; \
  515. rm -f $$list
  516. ipmievd$(EXEEXT): $(ipmievd_OBJECTS) $(ipmievd_DEPENDENCIES) $(EXTRA_ipmievd_DEPENDENCIES)
  517. @rm -f ipmievd$(EXEEXT)
  518. $(AM_V_CCLD)$(LINK) $(ipmievd_OBJECTS) $(ipmievd_LDADD) $(LIBS)
  519. ipmitool$(EXEEXT): $(ipmitool_OBJECTS) $(ipmitool_DEPENDENCIES) $(EXTRA_ipmitool_DEPENDENCIES)
  520. @rm -f ipmitool$(EXEEXT)
  521. $(AM_V_CCLD)$(LINK) $(ipmitool_OBJECTS) $(ipmitool_LDADD) $(LIBS)
  522. mostlyclean-compile:
  523. -rm -f *.$(OBJEXT)
  524. distclean-compile:
  525. -rm -f *.tab.c
  526. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipmievd.Po@am__quote@
  527. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipmishell.Po@am__quote@
  528. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipmitool.Po@am__quote@
  529. .c.o:
  530. @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
  531. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
  532. @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
  533. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  534. @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $<
  535. .c.obj:
  536. @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
  537. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
  538. @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
  539. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  540. @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
  541. .c.lo:
  542. @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
  543. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
  544. @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
  545. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  546. @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<
  547. mostlyclean-libtool:
  548. -rm -f *.lo
  549. clean-libtool:
  550. -rm -rf .libs _libs
  551. # This directory's subdirectories are mostly independent; you can cd
  552. # into them and run 'make' without going through this Makefile.
  553. # To change the values of 'make' variables: instead of editing Makefiles,
  554. # (1) if the variable is set in 'config.status', edit 'config.status'
  555. # (which will cause the Makefiles to be regenerated when you run 'make');
  556. # (2) otherwise, pass the desired values on the 'make' command line.
  557. $(am__recursive_targets):
  558. @fail=; \
  559. if $(am__make_keepgoing); then \
  560. failcom='fail=yes'; \
  561. else \
  562. failcom='exit 1'; \
  563. fi; \
  564. dot_seen=no; \
  565. target=`echo $@ | sed s/-recursive//`; \
  566. case "$@" in \
  567. distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
  568. *) list='$(SUBDIRS)' ;; \
  569. esac; \
  570. for subdir in $$list; do \
  571. echo "Making $$target in $$subdir"; \
  572. if test "$$subdir" = "."; then \
  573. dot_seen=yes; \
  574. local_target="$$target-am"; \
  575. else \
  576. local_target="$$target"; \
  577. fi; \
  578. ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
  579. || eval $$failcom; \
  580. done; \
  581. if test "$$dot_seen" = "no"; then \
  582. $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
  583. fi; test -z "$$fail"
  584. ID: $(am__tagged_files)
  585. $(am__define_uniq_tagged_files); mkid -fID $$unique
  586. tags: tags-recursive
  587. TAGS: tags
  588. tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  589. set x; \
  590. here=`pwd`; \
  591. if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
  592. include_option=--etags-include; \
  593. empty_fix=.; \
  594. else \
  595. include_option=--include; \
  596. empty_fix=; \
  597. fi; \
  598. list='$(SUBDIRS)'; for subdir in $$list; do \
  599. if test "$$subdir" = .; then :; else \
  600. test ! -f $$subdir/TAGS || \
  601. set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
  602. fi; \
  603. done; \
  604. $(am__define_uniq_tagged_files); \
  605. shift; \
  606. if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
  607. test -n "$$unique" || unique=$$empty_fix; \
  608. if test $$# -gt 0; then \
  609. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  610. "$$@" $$unique; \
  611. else \
  612. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  613. $$unique; \
  614. fi; \
  615. fi
  616. ctags: ctags-recursive
  617. CTAGS: ctags
  618. ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  619. $(am__define_uniq_tagged_files); \
  620. test -z "$(CTAGS_ARGS)$$unique" \
  621. || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
  622. $$unique
  623. GTAGS:
  624. here=`$(am__cd) $(top_builddir) && pwd` \
  625. && $(am__cd) $(top_srcdir) \
  626. && gtags -i $(GTAGS_ARGS) "$$here"
  627. cscopelist: cscopelist-recursive
  628. cscopelist-am: $(am__tagged_files)
  629. list='$(am__tagged_files)'; \
  630. case "$(srcdir)" in \
  631. [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
  632. *) sdir=$(subdir)/$(srcdir) ;; \
  633. esac; \
  634. for i in $$list; do \
  635. if test -f "$$i"; then \
  636. echo "$(subdir)/$$i"; \
  637. else \
  638. echo "$$sdir/$$i"; \
  639. fi; \
  640. done >> $(top_builddir)/cscope.files
  641. distclean-tags:
  642. -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
  643. distdir: $(DISTFILES)
  644. @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  645. topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  646. list='$(DISTFILES)'; \
  647. dist_files=`for file in $$list; do echo $$file; done | \
  648. sed -e "s|^$$srcdirstrip/||;t" \
  649. -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
  650. case $$dist_files in \
  651. */*) $(MKDIR_P) `echo "$$dist_files" | \
  652. sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
  653. sort -u` ;; \
  654. esac; \
  655. for file in $$dist_files; do \
  656. if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
  657. if test -d $$d/$$file; then \
  658. dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
  659. if test -d "$(distdir)/$$file"; then \
  660. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  661. fi; \
  662. if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
  663. cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
  664. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  665. fi; \
  666. cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
  667. else \
  668. test -f "$(distdir)/$$file" \
  669. || cp -p $$d/$$file "$(distdir)/$$file" \
  670. || exit 1; \
  671. fi; \
  672. done
  673. @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
  674. if test "$$subdir" = .; then :; else \
  675. $(am__make_dryrun) \
  676. || test -d "$(distdir)/$$subdir" \
  677. || $(MKDIR_P) "$(distdir)/$$subdir" \
  678. || exit 1; \
  679. dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
  680. $(am__relativize); \
  681. new_distdir=$$reldir; \
  682. dir1=$$subdir; dir2="$(top_distdir)"; \
  683. $(am__relativize); \
  684. new_top_distdir=$$reldir; \
  685. echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
  686. echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
  687. ($(am__cd) $$subdir && \
  688. $(MAKE) $(AM_MAKEFLAGS) \
  689. top_distdir="$$new_top_distdir" \
  690. distdir="$$new_distdir" \
  691. am__remove_distdir=: \
  692. am__skip_length_check=: \
  693. am__skip_mode_fix=: \
  694. distdir) \
  695. || exit 1; \
  696. fi; \
  697. done
  698. check-am: all-am
  699. check: check-recursive
  700. all-am: Makefile $(PROGRAMS)
  701. installdirs: installdirs-recursive
  702. installdirs-am:
  703. for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(sbindir)"; do \
  704. test -z "$$dir" || $(MKDIR_P) "$$dir"; \
  705. done
  706. install: install-recursive
  707. install-exec: install-exec-recursive
  708. install-data: install-data-recursive
  709. uninstall: uninstall-recursive
  710. install-am: all-am
  711. @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
  712. installcheck: installcheck-recursive
  713. install-strip:
  714. if test -z '$(STRIP)'; then \
  715. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  716. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  717. install; \
  718. else \
  719. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  720. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  721. "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
  722. fi
  723. mostlyclean-generic:
  724. clean-generic:
  725. distclean-generic:
  726. -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
  727. -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
  728. maintainer-clean-generic:
  729. @echo "This command is intended for maintainers to use"
  730. @echo "it deletes files that may require special tools to rebuild."
  731. -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
  732. clean: clean-recursive
  733. clean-am: clean-binPROGRAMS clean-generic clean-libtool \
  734. clean-sbinPROGRAMS mostlyclean-am
  735. distclean: distclean-recursive
  736. -rm -rf ./$(DEPDIR)
  737. -rm -f Makefile
  738. distclean-am: clean-am distclean-compile distclean-generic \
  739. distclean-tags
  740. dvi: dvi-recursive
  741. dvi-am:
  742. html: html-recursive
  743. html-am:
  744. info: info-recursive
  745. info-am:
  746. install-data-am:
  747. install-dvi: install-dvi-recursive
  748. install-dvi-am:
  749. install-exec-am: install-binPROGRAMS install-sbinPROGRAMS
  750. install-html: install-html-recursive
  751. install-html-am:
  752. install-info: install-info-recursive
  753. install-info-am:
  754. install-man:
  755. install-pdf: install-pdf-recursive
  756. install-pdf-am:
  757. install-ps: install-ps-recursive
  758. install-ps-am:
  759. installcheck-am:
  760. maintainer-clean: maintainer-clean-recursive
  761. -rm -rf ./$(DEPDIR)
  762. -rm -f Makefile
  763. maintainer-clean-am: distclean-am maintainer-clean-generic
  764. mostlyclean: mostlyclean-recursive
  765. mostlyclean-am: mostlyclean-compile mostlyclean-generic \
  766. mostlyclean-libtool
  767. pdf: pdf-recursive
  768. pdf-am:
  769. ps: ps-recursive
  770. ps-am:
  771. uninstall-am: uninstall-binPROGRAMS uninstall-sbinPROGRAMS
  772. .MAKE: $(am__recursive_targets) install-am install-strip
  773. .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \
  774. check-am clean clean-binPROGRAMS clean-generic clean-libtool \
  775. clean-sbinPROGRAMS cscopelist-am ctags ctags-am distclean \
  776. distclean-compile distclean-generic distclean-libtool \
  777. distclean-tags distdir dvi dvi-am html html-am info info-am \
  778. install install-am install-binPROGRAMS install-data \
  779. install-data-am install-dvi install-dvi-am install-exec \
  780. install-exec-am install-html install-html-am install-info \
  781. install-info-am install-man install-pdf install-pdf-am \
  782. install-ps install-ps-am install-sbinPROGRAMS install-strip \
  783. installcheck installcheck-am installdirs installdirs-am \
  784. maintainer-clean maintainer-clean-generic mostlyclean \
  785. mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
  786. pdf pdf-am ps ps-am tags tags-am uninstall uninstall-am \
  787. uninstall-binPROGRAMS uninstall-sbinPROGRAMS
  788. # Tell versions [3.59,3.63) of GNU make to not export all variables.
  789. # Otherwise a system limit (for SysV at least) may be exceeded.
  790. .NOEXPORT: