Makefile.in 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717
  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. subdir = lib
  107. DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
  108. $(top_srcdir)/depcomp
  109. ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
  110. am__aclocal_m4_deps = $(top_srcdir)/configure.ac
  111. am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
  112. $(ACLOCAL_M4)
  113. mkinstalldirs = $(install_sh) -d
  114. CONFIG_HEADER = $(top_builddir)/config.h
  115. CONFIG_CLEAN_FILES =
  116. CONFIG_CLEAN_VPATH_FILES =
  117. LTLIBRARIES = $(noinst_LTLIBRARIES)
  118. am__dirstamp = $(am__leading_dot)dirstamp
  119. am_libipmitool_la_OBJECTS = helper.lo ipmi_sdr.lo ipmi_sel.lo \
  120. ipmi_sol.lo ipmi_pef.lo ipmi_lanp.lo ipmi_fru.lo \
  121. ipmi_chassis.lo ipmi_mc.lo log.lo dimm_spd.lo ipmi_sensor.lo \
  122. ipmi_channel.lo ipmi_event.lo ipmi_session.lo ipmi_strings.lo \
  123. ipmi_user.lo ipmi_raw.lo ipmi_oem.lo ipmi_isol.lo \
  124. ipmi_sunoem.lo ipmi_fwum.lo ipmi_picmg.lo ipmi_main.lo \
  125. ipmi_tsol.lo ipmi_firewall.lo ipmi_kontronoem.lo \
  126. ipmi_hpmfwupg.lo ipmi_sdradd.lo ipmi_ekanalyzer.lo \
  127. ipmi_gendev.lo ipmi_ime.lo ipmi_delloem.lo ipmi_dcmi.lo \
  128. hpm2.lo ipmi_vita.lo ipmi_lanp6.lo ipmi_cfgp.lo \
  129. ../src/plugins/lan/md5.lo
  130. libipmitool_la_OBJECTS = $(am_libipmitool_la_OBJECTS)
  131. AM_V_lt = $(am__v_lt_@AM_V@)
  132. am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
  133. am__v_lt_0 = --silent
  134. am__v_lt_1 =
  135. libipmitool_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
  136. $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
  137. $(AM_CFLAGS) $(CFLAGS) $(libipmitool_la_LDFLAGS) $(LDFLAGS) -o \
  138. $@
  139. AM_V_P = $(am__v_P_@AM_V@)
  140. am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
  141. am__v_P_0 = false
  142. am__v_P_1 = :
  143. AM_V_GEN = $(am__v_GEN_@AM_V@)
  144. am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
  145. am__v_GEN_0 = @echo " GEN " $@;
  146. am__v_GEN_1 =
  147. AM_V_at = $(am__v_at_@AM_V@)
  148. am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
  149. am__v_at_0 = @
  150. am__v_at_1 =
  151. DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
  152. depcomp = $(SHELL) $(top_srcdir)/depcomp
  153. am__depfiles_maybe = depfiles
  154. am__mv = mv -f
  155. COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
  156. $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
  157. LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
  158. $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
  159. $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
  160. $(AM_CFLAGS) $(CFLAGS)
  161. AM_V_CC = $(am__v_CC_@AM_V@)
  162. am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
  163. am__v_CC_0 = @echo " CC " $@;
  164. am__v_CC_1 =
  165. CCLD = $(CC)
  166. LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
  167. $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
  168. $(AM_LDFLAGS) $(LDFLAGS) -o $@
  169. AM_V_CCLD = $(am__v_CCLD_@AM_V@)
  170. am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
  171. am__v_CCLD_0 = @echo " CCLD " $@;
  172. am__v_CCLD_1 =
  173. SOURCES = $(libipmitool_la_SOURCES)
  174. DIST_SOURCES = $(libipmitool_la_SOURCES)
  175. am__can_run_installinfo = \
  176. case $$AM_UPDATE_INFO_DIR in \
  177. n|no|NO) false;; \
  178. *) (install-info --version) >/dev/null 2>&1;; \
  179. esac
  180. am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
  181. # Read a list of newline-separated strings from the standard input,
  182. # and print each of them once, without duplicates. Input order is
  183. # *not* preserved.
  184. am__uniquify_input = $(AWK) '\
  185. BEGIN { nonempty = 0; } \
  186. { items[$$0] = 1; nonempty = 1; } \
  187. END { if (nonempty) { for (i in items) print i; }; } \
  188. '
  189. # Make sure the list of sources is unique. This is necessary because,
  190. # e.g., the same source file might be shared among _SOURCES variables
  191. # for different programs/libraries.
  192. am__define_uniq_tagged_files = \
  193. list='$(am__tagged_files)'; \
  194. unique=`for i in $$list; do \
  195. if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  196. done | $(am__uniquify_input)`
  197. ETAGS = etags
  198. CTAGS = ctags
  199. DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
  200. ACLOCAL = @ACLOCAL@
  201. AMTAR = @AMTAR@
  202. AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
  203. AR = @AR@
  204. ARCH = @ARCH@
  205. AUTOCONF = @AUTOCONF@
  206. AUTOHEADER = @AUTOHEADER@
  207. AUTOMAKE = @AUTOMAKE@
  208. AWK = @AWK@
  209. BASEDIR = @BASEDIR@
  210. CC = @CC@
  211. CCDEPMODE = @CCDEPMODE@
  212. CFLAGS = @CFLAGS@
  213. CPP = @CPP@
  214. CPPFLAGS = @CPPFLAGS@
  215. CYGPATH_W = @CYGPATH_W@
  216. DEFS = @DEFS@
  217. DEPDIR = @DEPDIR@
  218. DISTRO = @DISTRO@
  219. DLLTOOL = @DLLTOOL@
  220. DSYMUTIL = @DSYMUTIL@
  221. DUMPBIN = @DUMPBIN@
  222. ECHO_C = @ECHO_C@
  223. ECHO_N = @ECHO_N@
  224. ECHO_T = @ECHO_T@
  225. EGREP = @EGREP@
  226. EXEEXT = @EXEEXT@
  227. FGREP = @FGREP@
  228. GREP = @GREP@
  229. INSTALL = @INSTALL@
  230. INSTALL_DATA = @INSTALL_DATA@
  231. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  232. INSTALL_SCRIPT = @INSTALL_SCRIPT@
  233. INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
  234. INTF_BMC = @INTF_BMC@
  235. INTF_BMC_LIB = @INTF_BMC_LIB@
  236. INTF_DUMMY = @INTF_DUMMY@
  237. INTF_DUMMY_LIB = @INTF_DUMMY_LIB@
  238. INTF_FREE = @INTF_FREE@
  239. INTF_FREE_LIB = @INTF_FREE_LIB@
  240. INTF_IMB = @INTF_IMB@
  241. INTF_IMB_LIB = @INTF_IMB_LIB@
  242. INTF_LAN = @INTF_LAN@
  243. INTF_LANPLUS = @INTF_LANPLUS@
  244. INTF_LANPLUS_LIB = @INTF_LANPLUS_LIB@
  245. INTF_LAN_LIB = @INTF_LAN_LIB@
  246. INTF_LIPMI = @INTF_LIPMI@
  247. INTF_LIPMI_LIB = @INTF_LIPMI_LIB@
  248. INTF_OPEN = @INTF_OPEN@
  249. INTF_OPEN_LIB = @INTF_OPEN_LIB@
  250. INTF_SERIAL = @INTF_SERIAL@
  251. INTF_SERIAL_LIB = @INTF_SERIAL_LIB@
  252. INTF_USB = @INTF_USB@
  253. INTF_USB_LIB = @INTF_USB_LIB@
  254. IPMITOOL_INTF_LIB = @IPMITOOL_INTF_LIB@
  255. LD = @LD@
  256. LDFLAGS = @LDFLAGS@
  257. LIBOBJS = @LIBOBJS@
  258. LIBS = @LIBS@
  259. LIBTOOL = @LIBTOOL@
  260. LIPO = @LIPO@
  261. LN_S = @LN_S@
  262. LTLIBOBJS = @LTLIBOBJS@
  263. MAKEINFO = @MAKEINFO@
  264. MANIFEST_TOOL = @MANIFEST_TOOL@
  265. MKDIR_P = @MKDIR_P@
  266. NM = @NM@
  267. NMEDIT = @NMEDIT@
  268. OBJDUMP = @OBJDUMP@
  269. OBJEXT = @OBJEXT@
  270. OS = @OS@
  271. OTOOL = @OTOOL@
  272. OTOOL64 = @OTOOL64@
  273. PACKAGE = @PACKAGE@
  274. PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
  275. PACKAGE_NAME = @PACKAGE_NAME@
  276. PACKAGE_STRING = @PACKAGE_STRING@
  277. PACKAGE_TARNAME = @PACKAGE_TARNAME@
  278. PACKAGE_URL = @PACKAGE_URL@
  279. PACKAGE_VERSION = @PACKAGE_VERSION@
  280. PATH_SEPARATOR = @PATH_SEPARATOR@
  281. POW_LIB = @POW_LIB@
  282. PSTAMP = @PSTAMP@
  283. RANLIB = @RANLIB@
  284. RPMBUILD = @RPMBUILD@
  285. RPM_RELEASE = @RPM_RELEASE@
  286. SED = @SED@
  287. SET_MAKE = @SET_MAKE@
  288. SHELL = @SHELL@
  289. STRIP = @STRIP@
  290. VERSION = @VERSION@
  291. abs_builddir = @abs_builddir@
  292. abs_srcdir = @abs_srcdir@
  293. abs_top_builddir = @abs_top_builddir@
  294. abs_top_srcdir = @abs_top_srcdir@
  295. ac_configure_args = @ac_configure_args@
  296. ac_ct_AR = @ac_ct_AR@
  297. ac_ct_CC = @ac_ct_CC@
  298. ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
  299. am__include = @am__include@
  300. am__leading_dot = @am__leading_dot@
  301. am__quote = @am__quote@
  302. am__tar = @am__tar@
  303. am__untar = @am__untar@
  304. bindir = @bindir@
  305. build = @build@
  306. build_alias = @build_alias@
  307. build_cpu = @build_cpu@
  308. build_os = @build_os@
  309. build_vendor = @build_vendor@
  310. builddir = @builddir@
  311. datadir = @datadir@
  312. datarootdir = @datarootdir@
  313. docdir = @docdir@
  314. dvidir = @dvidir@
  315. exec_prefix = @exec_prefix@
  316. host = @host@
  317. host_alias = @host_alias@
  318. host_cpu = @host_cpu@
  319. host_os = @host_os@
  320. host_vendor = @host_vendor@
  321. htmldir = @htmldir@
  322. includedir = @includedir@
  323. infodir = @infodir@
  324. install_sh = @install_sh@
  325. libdir = @libdir@
  326. libexecdir = @libexecdir@
  327. localedir = @localedir@
  328. localstatedir = @localstatedir@
  329. mandir = @mandir@
  330. mkdir_p = @mkdir_p@
  331. oldincludedir = @oldincludedir@
  332. pdfdir = @pdfdir@
  333. prefix = @prefix@
  334. program_transform_name = @program_transform_name@
  335. psdir = @psdir@
  336. sbindir = @sbindir@
  337. sharedstatedir = @sharedstatedir@
  338. srcdir = @srcdir@
  339. sysconfdir = @sysconfdir@
  340. target = @target@
  341. target_alias = @target_alias@
  342. target_cpu = @target_cpu@
  343. target_os = @target_os@
  344. target_vendor = @target_vendor@
  345. top_build_prefix = @top_build_prefix@
  346. top_builddir = @top_builddir@
  347. top_srcdir = @top_srcdir@
  348. AUTOMAKE_OPTIONS = subdir-objects
  349. AM_CPPFLAGS = -I$(top_srcdir)/include
  350. MAINTAINERCLEANFILES = Makefile.in
  351. noinst_LTLIBRARIES = libipmitool.la
  352. libipmitool_la_SOURCES = helper.c ipmi_sdr.c ipmi_sel.c ipmi_sol.c ipmi_pef.c \
  353. ipmi_lanp.c ipmi_fru.c ipmi_chassis.c ipmi_mc.c log.c \
  354. dimm_spd.c ipmi_sensor.c ipmi_channel.c ipmi_event.c \
  355. ipmi_session.c ipmi_strings.c ipmi_user.c ipmi_raw.c \
  356. ipmi_oem.c ipmi_isol.c ipmi_sunoem.c ipmi_fwum.c ipmi_picmg.c \
  357. ipmi_main.c ipmi_tsol.c ipmi_firewall.c ipmi_kontronoem.c \
  358. ipmi_hpmfwupg.c ipmi_sdradd.c ipmi_ekanalyzer.c ipmi_gendev.c \
  359. ipmi_ime.c ipmi_delloem.c ipmi_dcmi.c hpm2.c ipmi_vita.c \
  360. ipmi_lanp6.c ipmi_cfgp.c \
  361. ../src/plugins/lan/md5.c ../src/plugins/lan/md5.h
  362. libipmitool_la_LDFLAGS = -export-dynamic
  363. libipmitool_la_LIBADD = -lm
  364. libipmitool_la_DEPENDENCIES =
  365. all: all-am
  366. .SUFFIXES:
  367. .SUFFIXES: .c .lo .o .obj
  368. $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
  369. @for dep in $?; do \
  370. case '$(am__configure_deps)' in \
  371. *$$dep*) \
  372. ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
  373. && { if test -f $@; then exit 0; else break; fi; }; \
  374. exit 1;; \
  375. esac; \
  376. done; \
  377. echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign lib/Makefile'; \
  378. $(am__cd) $(top_srcdir) && \
  379. $(AUTOMAKE) --foreign lib/Makefile
  380. .PRECIOUS: Makefile
  381. Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  382. @case '$?' in \
  383. *config.status*) \
  384. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
  385. *) \
  386. echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
  387. cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
  388. esac;
  389. $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
  390. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  391. $(top_srcdir)/configure: $(am__configure_deps)
  392. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  393. $(ACLOCAL_M4): $(am__aclocal_m4_deps)
  394. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  395. $(am__aclocal_m4_deps):
  396. clean-noinstLTLIBRARIES:
  397. -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)
  398. @list='$(noinst_LTLIBRARIES)'; \
  399. locs=`for p in $$list; do echo $$p; done | \
  400. sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
  401. sort -u`; \
  402. test -z "$$locs" || { \
  403. echo rm -f $${locs}; \
  404. rm -f $${locs}; \
  405. }
  406. ../src/plugins/lan/$(am__dirstamp):
  407. @$(MKDIR_P) ../src/plugins/lan
  408. @: > ../src/plugins/lan/$(am__dirstamp)
  409. ../src/plugins/lan/$(DEPDIR)/$(am__dirstamp):
  410. @$(MKDIR_P) ../src/plugins/lan/$(DEPDIR)
  411. @: > ../src/plugins/lan/$(DEPDIR)/$(am__dirstamp)
  412. ../src/plugins/lan/md5.lo: ../src/plugins/lan/$(am__dirstamp) \
  413. ../src/plugins/lan/$(DEPDIR)/$(am__dirstamp)
  414. libipmitool.la: $(libipmitool_la_OBJECTS) $(libipmitool_la_DEPENDENCIES) $(EXTRA_libipmitool_la_DEPENDENCIES)
  415. $(AM_V_CCLD)$(libipmitool_la_LINK) $(libipmitool_la_OBJECTS) $(libipmitool_la_LIBADD) $(LIBS)
  416. mostlyclean-compile:
  417. -rm -f *.$(OBJEXT)
  418. -rm -f ../src/plugins/lan/*.$(OBJEXT)
  419. -rm -f ../src/plugins/lan/*.lo
  420. distclean-compile:
  421. -rm -f *.tab.c
  422. @AMDEP_TRUE@@am__include@ @am__quote@../src/plugins/lan/$(DEPDIR)/md5.Plo@am__quote@
  423. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dimm_spd.Plo@am__quote@
  424. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/helper.Plo@am__quote@
  425. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpm2.Plo@am__quote@
  426. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipmi_cfgp.Plo@am__quote@
  427. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipmi_channel.Plo@am__quote@
  428. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipmi_chassis.Plo@am__quote@
  429. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipmi_dcmi.Plo@am__quote@
  430. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipmi_delloem.Plo@am__quote@
  431. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipmi_ekanalyzer.Plo@am__quote@
  432. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipmi_event.Plo@am__quote@
  433. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipmi_firewall.Plo@am__quote@
  434. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipmi_fru.Plo@am__quote@
  435. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipmi_fwum.Plo@am__quote@
  436. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipmi_gendev.Plo@am__quote@
  437. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipmi_hpmfwupg.Plo@am__quote@
  438. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipmi_ime.Plo@am__quote@
  439. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipmi_isol.Plo@am__quote@
  440. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipmi_kontronoem.Plo@am__quote@
  441. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipmi_lanp.Plo@am__quote@
  442. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipmi_lanp6.Plo@am__quote@
  443. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipmi_main.Plo@am__quote@
  444. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipmi_mc.Plo@am__quote@
  445. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipmi_oem.Plo@am__quote@
  446. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipmi_pef.Plo@am__quote@
  447. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipmi_picmg.Plo@am__quote@
  448. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipmi_raw.Plo@am__quote@
  449. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipmi_sdr.Plo@am__quote@
  450. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipmi_sdradd.Plo@am__quote@
  451. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipmi_sel.Plo@am__quote@
  452. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipmi_sensor.Plo@am__quote@
  453. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipmi_session.Plo@am__quote@
  454. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipmi_sol.Plo@am__quote@
  455. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipmi_strings.Plo@am__quote@
  456. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipmi_sunoem.Plo@am__quote@
  457. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipmi_tsol.Plo@am__quote@
  458. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipmi_user.Plo@am__quote@
  459. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipmi_vita.Plo@am__quote@
  460. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/log.Plo@am__quote@
  461. .c.o:
  462. @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
  463. @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
  464. @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
  465. @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
  466. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  467. @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $<
  468. .c.obj:
  469. @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\
  470. @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\
  471. @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
  472. @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
  473. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  474. @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
  475. .c.lo:
  476. @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\
  477. @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
  478. @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo
  479. @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
  480. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  481. @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<
  482. mostlyclean-libtool:
  483. -rm -f *.lo
  484. clean-libtool:
  485. -rm -rf .libs _libs
  486. -rm -rf ../src/plugins/lan/.libs ../src/plugins/lan/_libs
  487. ID: $(am__tagged_files)
  488. $(am__define_uniq_tagged_files); mkid -fID $$unique
  489. tags: tags-am
  490. TAGS: tags
  491. tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  492. set x; \
  493. here=`pwd`; \
  494. $(am__define_uniq_tagged_files); \
  495. shift; \
  496. if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
  497. test -n "$$unique" || unique=$$empty_fix; \
  498. if test $$# -gt 0; then \
  499. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  500. "$$@" $$unique; \
  501. else \
  502. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  503. $$unique; \
  504. fi; \
  505. fi
  506. ctags: ctags-am
  507. CTAGS: ctags
  508. ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  509. $(am__define_uniq_tagged_files); \
  510. test -z "$(CTAGS_ARGS)$$unique" \
  511. || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
  512. $$unique
  513. GTAGS:
  514. here=`$(am__cd) $(top_builddir) && pwd` \
  515. && $(am__cd) $(top_srcdir) \
  516. && gtags -i $(GTAGS_ARGS) "$$here"
  517. cscopelist: cscopelist-am
  518. cscopelist-am: $(am__tagged_files)
  519. list='$(am__tagged_files)'; \
  520. case "$(srcdir)" in \
  521. [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
  522. *) sdir=$(subdir)/$(srcdir) ;; \
  523. esac; \
  524. for i in $$list; do \
  525. if test -f "$$i"; then \
  526. echo "$(subdir)/$$i"; \
  527. else \
  528. echo "$$sdir/$$i"; \
  529. fi; \
  530. done >> $(top_builddir)/cscope.files
  531. distclean-tags:
  532. -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
  533. distdir: $(DISTFILES)
  534. @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  535. topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  536. list='$(DISTFILES)'; \
  537. dist_files=`for file in $$list; do echo $$file; done | \
  538. sed -e "s|^$$srcdirstrip/||;t" \
  539. -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
  540. case $$dist_files in \
  541. */*) $(MKDIR_P) `echo "$$dist_files" | \
  542. sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
  543. sort -u` ;; \
  544. esac; \
  545. for file in $$dist_files; do \
  546. if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
  547. if test -d $$d/$$file; then \
  548. dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
  549. if test -d "$(distdir)/$$file"; then \
  550. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  551. fi; \
  552. if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
  553. cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
  554. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  555. fi; \
  556. cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
  557. else \
  558. test -f "$(distdir)/$$file" \
  559. || cp -p $$d/$$file "$(distdir)/$$file" \
  560. || exit 1; \
  561. fi; \
  562. done
  563. check-am: all-am
  564. check: check-am
  565. all-am: Makefile $(LTLIBRARIES)
  566. installdirs:
  567. install: install-am
  568. install-exec: install-exec-am
  569. install-data: install-data-am
  570. uninstall: uninstall-am
  571. install-am: all-am
  572. @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
  573. installcheck: installcheck-am
  574. install-strip:
  575. if test -z '$(STRIP)'; then \
  576. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  577. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  578. install; \
  579. else \
  580. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  581. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  582. "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
  583. fi
  584. mostlyclean-generic:
  585. clean-generic:
  586. distclean-generic:
  587. -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
  588. -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
  589. -rm -f ../src/plugins/lan/$(DEPDIR)/$(am__dirstamp)
  590. -rm -f ../src/plugins/lan/$(am__dirstamp)
  591. maintainer-clean-generic:
  592. @echo "This command is intended for maintainers to use"
  593. @echo "it deletes files that may require special tools to rebuild."
  594. -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
  595. clean: clean-am
  596. clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \
  597. mostlyclean-am
  598. distclean: distclean-am
  599. -rm -rf ../src/plugins/lan/$(DEPDIR) ./$(DEPDIR)
  600. -rm -f Makefile
  601. distclean-am: clean-am distclean-compile distclean-generic \
  602. distclean-tags
  603. dvi: dvi-am
  604. dvi-am:
  605. html: html-am
  606. html-am:
  607. info: info-am
  608. info-am:
  609. install-data-am:
  610. install-dvi: install-dvi-am
  611. install-dvi-am:
  612. install-exec-am:
  613. install-html: install-html-am
  614. install-html-am:
  615. install-info: install-info-am
  616. install-info-am:
  617. install-man:
  618. install-pdf: install-pdf-am
  619. install-pdf-am:
  620. install-ps: install-ps-am
  621. install-ps-am:
  622. installcheck-am:
  623. maintainer-clean: maintainer-clean-am
  624. -rm -rf ../src/plugins/lan/$(DEPDIR) ./$(DEPDIR)
  625. -rm -f Makefile
  626. maintainer-clean-am: distclean-am maintainer-clean-generic
  627. mostlyclean: mostlyclean-am
  628. mostlyclean-am: mostlyclean-compile mostlyclean-generic \
  629. mostlyclean-libtool
  630. pdf: pdf-am
  631. pdf-am:
  632. ps: ps-am
  633. ps-am:
  634. uninstall-am:
  635. .MAKE: install-am install-strip
  636. .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \
  637. clean-libtool clean-noinstLTLIBRARIES cscopelist-am ctags \
  638. ctags-am distclean distclean-compile distclean-generic \
  639. distclean-libtool distclean-tags distdir dvi dvi-am html \
  640. html-am info info-am install install-am install-data \
  641. install-data-am install-dvi install-dvi-am install-exec \
  642. install-exec-am install-html install-html-am install-info \
  643. install-info-am install-man install-pdf install-pdf-am \
  644. install-ps install-ps-am install-strip installcheck \
  645. installcheck-am installdirs maintainer-clean \
  646. maintainer-clean-generic mostlyclean mostlyclean-compile \
  647. mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
  648. tags tags-am uninstall uninstall-am
  649. # Tell versions [3.59,3.63) of GNU make to not export all variables.
  650. # Otherwise a system limit (for SysV at least) may be exceeded.
  651. .NOEXPORT: