Makefile 48 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289
  1. # Makefile.in generated by automake 1.16.3 from Makefile.am.
  2. # modules/pam_pwhistory/Makefile. Generated from Makefile.in by configure.
  3. # Copyright (C) 1994-2020 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. #
  12. # Copyright (c) 2008, 2009 Thorsten Kukuk <kukuk@suse.de>
  13. # Copyright (c) 2013 Red Hat, Inc.
  14. #
  15. am__is_gnu_make = { \
  16. if test -z '$(MAKELEVEL)'; then \
  17. false; \
  18. elif test -n '$(MAKE_HOST)'; then \
  19. true; \
  20. elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
  21. true; \
  22. else \
  23. false; \
  24. fi; \
  25. }
  26. am__make_running_with_option = \
  27. case $${target_option-} in \
  28. ?) ;; \
  29. *) echo "am__make_running_with_option: internal error: invalid" \
  30. "target option '$${target_option-}' specified" >&2; \
  31. exit 1;; \
  32. esac; \
  33. has_opt=no; \
  34. sane_makeflags=$$MAKEFLAGS; \
  35. if $(am__is_gnu_make); then \
  36. sane_makeflags=$$MFLAGS; \
  37. else \
  38. case $$MAKEFLAGS in \
  39. *\\[\ \ ]*) \
  40. bs=\\; \
  41. sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
  42. | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
  43. esac; \
  44. fi; \
  45. skip_next=no; \
  46. strip_trailopt () \
  47. { \
  48. flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
  49. }; \
  50. for flg in $$sane_makeflags; do \
  51. test $$skip_next = yes && { skip_next=no; continue; }; \
  52. case $$flg in \
  53. *=*|--*) continue;; \
  54. -*I) strip_trailopt 'I'; skip_next=yes;; \
  55. -*I?*) strip_trailopt 'I';; \
  56. -*O) strip_trailopt 'O'; skip_next=yes;; \
  57. -*O?*) strip_trailopt 'O';; \
  58. -*l) strip_trailopt 'l'; skip_next=yes;; \
  59. -*l?*) strip_trailopt 'l';; \
  60. -[dEDm]) skip_next=yes;; \
  61. -[JT]) skip_next=yes;; \
  62. esac; \
  63. case $$flg in \
  64. *$$target_option*) has_opt=yes; break;; \
  65. esac; \
  66. done; \
  67. test $$has_opt = yes
  68. am__make_dryrun = (target_option=n; $(am__make_running_with_option))
  69. am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
  70. pkgdatadir = $(datadir)/Linux-PAM
  71. pkgincludedir = $(includedir)/Linux-PAM
  72. pkglibdir = $(libdir)/Linux-PAM
  73. pkglibexecdir = $(libexecdir)/Linux-PAM
  74. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
  75. install_sh_DATA = $(install_sh) -c -m 644
  76. install_sh_PROGRAM = $(install_sh) -c
  77. install_sh_SCRIPT = $(install_sh) -c
  78. INSTALL_HEADER = $(INSTALL_DATA)
  79. transform = $(program_transform_name)
  80. NORMAL_INSTALL = :
  81. PRE_INSTALL = :
  82. POST_INSTALL = :
  83. NORMAL_UNINSTALL = :
  84. PRE_UNINSTALL = :
  85. POST_UNINSTALL = :
  86. build_triplet = x86_64-pc-linux-gnu
  87. host_triplet = arm-unknown-linux-gnueabihf
  88. am__append_1 = -Wl,--version-script=$(srcdir)/../modules.map
  89. sbin_PROGRAMS = pwhistory_helper$(EXEEXT)
  90. subdir = modules/pam_pwhistory
  91. ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
  92. am__aclocal_m4_deps = $(top_srcdir)/m4/attribute.m4 \
  93. $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/iconv.m4 \
  94. $(top_srcdir)/m4/intlmacosx.m4 \
  95. $(top_srcdir)/m4/jh_path_xml_catalog.m4 \
  96. $(top_srcdir)/m4/ld-O1.m4 $(top_srcdir)/m4/ld-as-needed.m4 \
  97. $(top_srcdir)/m4/ld-no-undefined.m4 \
  98. $(top_srcdir)/m4/ld-z-now.m4 $(top_srcdir)/m4/lib-ld.m4 \
  99. $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \
  100. $(top_srcdir)/m4/libprelude.m4 $(top_srcdir)/m4/libtool.m4 \
  101. $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
  102. $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
  103. $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \
  104. $(top_srcdir)/m4/progtest.m4 \
  105. $(top_srcdir)/m4/warn_lang_flags.m4 \
  106. $(top_srcdir)/m4/warnings.m4 $(top_srcdir)/configure.ac
  107. am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
  108. $(ACLOCAL_M4)
  109. DIST_COMMON = $(srcdir)/Makefile.am $(dist_check_SCRIPTS) \
  110. $(am__dist_noinst_DATA_DIST) $(noinst_HEADERS) \
  111. $(am__DIST_COMMON)
  112. mkinstalldirs = $(install_sh) -d
  113. CONFIG_HEADER = $(top_builddir)/config.h
  114. CONFIG_CLEAN_FILES =
  115. CONFIG_CLEAN_VPATH_FILES =
  116. am__installdirs = "$(DESTDIR)$(sbindir)" "$(DESTDIR)$(securelibdir)" \
  117. "$(DESTDIR)$(man8dir)"
  118. PROGRAMS = $(sbin_PROGRAMS)
  119. am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
  120. am__vpath_adj = case $$p in \
  121. $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
  122. *) f=$$p;; \
  123. esac;
  124. am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
  125. am__install_max = 40
  126. am__nobase_strip_setup = \
  127. srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
  128. am__nobase_strip = \
  129. for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
  130. am__nobase_list = $(am__nobase_strip_setup); \
  131. for p in $$list; do echo "$$p $$p"; done | \
  132. sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
  133. $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
  134. if (++n[$$2] == $(am__install_max)) \
  135. { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
  136. END { for (dir in files) print dir, files[dir] }'
  137. am__base_list = \
  138. sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
  139. sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
  140. am__uninstall_files_from_dir = { \
  141. test -z "$$files" \
  142. || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
  143. || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
  144. $(am__cd) "$$dir" && rm -f $$files; }; \
  145. }
  146. LTLIBRARIES = $(securelib_LTLIBRARIES)
  147. pam_pwhistory_la_DEPENDENCIES = $(top_builddir)/libpam/libpam.la
  148. am_pam_pwhistory_la_OBJECTS = pam_pwhistory_la-pam_pwhistory.lo \
  149. pam_pwhistory_la-opasswd.lo
  150. pam_pwhistory_la_OBJECTS = $(am_pam_pwhistory_la_OBJECTS)
  151. AM_V_lt = $(am__v_lt_$(V))
  152. am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY))
  153. am__v_lt_0 = --silent
  154. am__v_lt_1 =
  155. pam_pwhistory_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
  156. $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
  157. $(pam_pwhistory_la_CFLAGS) $(CFLAGS) \
  158. $(pam_pwhistory_la_LDFLAGS) $(LDFLAGS) -o $@
  159. am_pwhistory_helper_OBJECTS = \
  160. pwhistory_helper-pwhistory_helper.$(OBJEXT) \
  161. pwhistory_helper-opasswd.$(OBJEXT)
  162. pwhistory_helper_OBJECTS = $(am_pwhistory_helper_OBJECTS)
  163. pwhistory_helper_DEPENDENCIES = $(top_builddir)/libpam/libpam.la
  164. pwhistory_helper_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
  165. $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
  166. $(pwhistory_helper_CFLAGS) $(CFLAGS) \
  167. $(pwhistory_helper_LDFLAGS) $(LDFLAGS) -o $@
  168. AM_V_P = $(am__v_P_$(V))
  169. am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY))
  170. am__v_P_0 = false
  171. am__v_P_1 = :
  172. AM_V_GEN = $(am__v_GEN_$(V))
  173. am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
  174. am__v_GEN_0 = @echo " GEN " $@;
  175. am__v_GEN_1 =
  176. AM_V_at = $(am__v_at_$(V))
  177. am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
  178. am__v_at_0 = @
  179. am__v_at_1 =
  180. DEFAULT_INCLUDES = -I. -I$(top_builddir)
  181. depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp
  182. am__maybe_remake_depfiles = depfiles
  183. am__depfiles_remade = ./$(DEPDIR)/pam_pwhistory_la-opasswd.Plo \
  184. ./$(DEPDIR)/pam_pwhistory_la-pam_pwhistory.Plo \
  185. ./$(DEPDIR)/pwhistory_helper-opasswd.Po \
  186. ./$(DEPDIR)/pwhistory_helper-pwhistory_helper.Po
  187. am__mv = mv -f
  188. COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
  189. $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
  190. LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
  191. $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
  192. $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
  193. $(AM_CFLAGS) $(CFLAGS)
  194. AM_V_CC = $(am__v_CC_$(V))
  195. am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY))
  196. am__v_CC_0 = @echo " CC " $@;
  197. am__v_CC_1 =
  198. CCLD = $(CC)
  199. LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
  200. $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
  201. $(AM_LDFLAGS) $(LDFLAGS) -o $@
  202. AM_V_CCLD = $(am__v_CCLD_$(V))
  203. am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY))
  204. am__v_CCLD_0 = @echo " CCLD " $@;
  205. am__v_CCLD_1 =
  206. SOURCES = $(pam_pwhistory_la_SOURCES) $(pwhistory_helper_SOURCES)
  207. DIST_SOURCES = $(pam_pwhistory_la_SOURCES) $(pwhistory_helper_SOURCES)
  208. am__can_run_installinfo = \
  209. case $$AM_UPDATE_INFO_DIR in \
  210. n|no|NO) false;; \
  211. *) (install-info --version) >/dev/null 2>&1;; \
  212. esac
  213. man8dir = $(mandir)/man8
  214. NROFF = nroff
  215. MANS = $(dist_man_MANS)
  216. am__dist_noinst_DATA_DIST = README
  217. DATA = $(dist_noinst_DATA)
  218. HEADERS = $(noinst_HEADERS)
  219. am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
  220. # Read a list of newline-separated strings from the standard input,
  221. # and print each of them once, without duplicates. Input order is
  222. # *not* preserved.
  223. am__uniquify_input = $(AWK) '\
  224. BEGIN { nonempty = 0; } \
  225. { items[$$0] = 1; nonempty = 1; } \
  226. END { if (nonempty) { for (i in items) print i; }; } \
  227. '
  228. # Make sure the list of sources is unique. This is necessary because,
  229. # e.g., the same source file might be shared among _SOURCES variables
  230. # for different programs/libraries.
  231. am__define_uniq_tagged_files = \
  232. list='$(am__tagged_files)'; \
  233. unique=`for i in $$list; do \
  234. if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  235. done | $(am__uniquify_input)`
  236. ETAGS = etags
  237. CTAGS = ctags
  238. am__tty_colors_dummy = \
  239. mgn= red= grn= lgn= blu= brg= std=; \
  240. am__color_tests=no
  241. am__tty_colors = { \
  242. $(am__tty_colors_dummy); \
  243. if test "X$(AM_COLOR_TESTS)" = Xno; then \
  244. am__color_tests=no; \
  245. elif test "X$(AM_COLOR_TESTS)" = Xalways; then \
  246. am__color_tests=yes; \
  247. elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \
  248. am__color_tests=yes; \
  249. fi; \
  250. if test $$am__color_tests = yes; then \
  251. red=''; \
  252. grn=''; \
  253. lgn=''; \
  254. blu=''; \
  255. mgn=''; \
  256. brg=''; \
  257. std=''; \
  258. fi; \
  259. }
  260. am__recheck_rx = ^[ ]*:recheck:[ ]*
  261. am__global_test_result_rx = ^[ ]*:global-test-result:[ ]*
  262. am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]*
  263. # A command that, given a newline-separated list of test names on the
  264. # standard input, print the name of the tests that are to be re-run
  265. # upon "make recheck".
  266. am__list_recheck_tests = $(AWK) '{ \
  267. recheck = 1; \
  268. while ((rc = (getline line < ($$0 ".trs"))) != 0) \
  269. { \
  270. if (rc < 0) \
  271. { \
  272. if ((getline line2 < ($$0 ".log")) < 0) \
  273. recheck = 0; \
  274. break; \
  275. } \
  276. else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \
  277. { \
  278. recheck = 0; \
  279. break; \
  280. } \
  281. else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \
  282. { \
  283. break; \
  284. } \
  285. }; \
  286. if (recheck) \
  287. print $$0; \
  288. close ($$0 ".trs"); \
  289. close ($$0 ".log"); \
  290. }'
  291. # A command that, given a newline-separated list of test names on the
  292. # standard input, create the global log from their .trs and .log files.
  293. am__create_global_log = $(AWK) ' \
  294. function fatal(msg) \
  295. { \
  296. print "fatal: making $@: " msg | "cat >&2"; \
  297. exit 1; \
  298. } \
  299. function rst_section(header) \
  300. { \
  301. print header; \
  302. len = length(header); \
  303. for (i = 1; i <= len; i = i + 1) \
  304. printf "="; \
  305. printf "\n\n"; \
  306. } \
  307. { \
  308. copy_in_global_log = 1; \
  309. global_test_result = "RUN"; \
  310. while ((rc = (getline line < ($$0 ".trs"))) != 0) \
  311. { \
  312. if (rc < 0) \
  313. fatal("failed to read from " $$0 ".trs"); \
  314. if (line ~ /$(am__global_test_result_rx)/) \
  315. { \
  316. sub("$(am__global_test_result_rx)", "", line); \
  317. sub("[ ]*$$", "", line); \
  318. global_test_result = line; \
  319. } \
  320. else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \
  321. copy_in_global_log = 0; \
  322. }; \
  323. if (copy_in_global_log) \
  324. { \
  325. rst_section(global_test_result ": " $$0); \
  326. while ((rc = (getline line < ($$0 ".log"))) != 0) \
  327. { \
  328. if (rc < 0) \
  329. fatal("failed to read from " $$0 ".log"); \
  330. print line; \
  331. }; \
  332. printf "\n"; \
  333. }; \
  334. close ($$0 ".trs"); \
  335. close ($$0 ".log"); \
  336. }'
  337. # Restructured Text title.
  338. am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; }
  339. # Solaris 10 'make', and several other traditional 'make' implementations,
  340. # pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it
  341. # by disabling -e (using the XSI extension "set +e") if it's set.
  342. am__sh_e_setup = case $$- in *e*) set +e;; esac
  343. # Default flags passed to test drivers.
  344. am__common_driver_flags = \
  345. --color-tests "$$am__color_tests" \
  346. --enable-hard-errors "$$am__enable_hard_errors" \
  347. --expect-failure "$$am__expect_failure"
  348. # To be inserted before the command running the test. Creates the
  349. # directory for the log if needed. Stores in $dir the directory
  350. # containing $f, in $tst the test, in $log the log. Executes the
  351. # developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and
  352. # passes TESTS_ENVIRONMENT. Set up options for the wrapper that
  353. # will run the test scripts (or their associated LOG_COMPILER, if
  354. # thy have one).
  355. am__check_pre = \
  356. $(am__sh_e_setup); \
  357. $(am__vpath_adj_setup) $(am__vpath_adj) \
  358. $(am__tty_colors); \
  359. srcdir=$(srcdir); export srcdir; \
  360. case "$@" in \
  361. */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \
  362. *) am__odir=.;; \
  363. esac; \
  364. test "x$$am__odir" = x"." || test -d "$$am__odir" \
  365. || $(MKDIR_P) "$$am__odir" || exit $$?; \
  366. if test -f "./$$f"; then dir=./; \
  367. elif test -f "$$f"; then dir=; \
  368. else dir="$(srcdir)/"; fi; \
  369. tst=$$dir$$f; log='$@'; \
  370. if test -n '$(DISABLE_HARD_ERRORS)'; then \
  371. am__enable_hard_errors=no; \
  372. else \
  373. am__enable_hard_errors=yes; \
  374. fi; \
  375. case " $(XFAIL_TESTS) " in \
  376. *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \
  377. am__expect_failure=yes;; \
  378. *) \
  379. am__expect_failure=no;; \
  380. esac; \
  381. $(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT)
  382. # A shell command to get the names of the tests scripts with any registered
  383. # extension removed (i.e., equivalently, the names of the test logs, with
  384. # the '.log' extension removed). The result is saved in the shell variable
  385. # '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly,
  386. # we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)",
  387. # since that might cause problem with VPATH rewrites for suffix-less tests.
  388. # See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'.
  389. am__set_TESTS_bases = \
  390. bases='$(TEST_LOGS)'; \
  391. bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \
  392. bases=`echo $$bases`
  393. AM_TESTSUITE_SUMMARY_HEADER = ' for $(PACKAGE_STRING)'
  394. RECHECK_LOGS = $(TEST_LOGS)
  395. AM_RECURSIVE_TARGETS = check recheck
  396. TEST_SUITE_LOG = test-suite.log
  397. TEST_EXTENSIONS = .test
  398. LOG_DRIVER = $(SHELL) $(top_srcdir)/build-aux/test-driver
  399. LOG_COMPILE = $(LOG_COMPILER) $(AM_LOG_FLAGS) $(LOG_FLAGS)
  400. am__set_b = \
  401. case '$@' in \
  402. */*) \
  403. case '$*' in \
  404. */*) b='$*';; \
  405. *) b=`echo '$@' | sed 's/\.log$$//'`; \
  406. esac;; \
  407. *) \
  408. b='$*';; \
  409. esac
  410. am__test_logs1 = $(TESTS:=.log)
  411. am__test_logs2 = $(am__test_logs1:.log=.log)
  412. TEST_LOGS = $(am__test_logs2:.test.log=.log)
  413. TEST_LOG_DRIVER = $(SHELL) $(top_srcdir)/build-aux/test-driver
  414. TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \
  415. $(TEST_LOG_FLAGS)
  416. am__DIST_COMMON = $(dist_man_MANS) $(srcdir)/Makefile.in \
  417. $(top_srcdir)/build-aux/depcomp \
  418. $(top_srcdir)/build-aux/test-driver
  419. DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
  420. ACLOCAL = ${SHELL} '/opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/linux-pam-1.5.2/build-aux/missing' aclocal-1.16
  421. AMTAR = $${TAR-tar}
  422. AM_DEFAULT_VERBOSITY = 1
  423. AR = /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/linux-devkit/sysroots/x86_64-arago-linux/usr/bin/arm-linux-gnueabihf-ar
  424. AUTOCONF = ${SHELL} '/opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/linux-pam-1.5.2/build-aux/missing' autoconf
  425. AUTOHEADER = ${SHELL} '/opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/linux-pam-1.5.2/build-aux/missing' autoheader
  426. AUTOMAKE = ${SHELL} '/opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/linux-pam-1.5.2/build-aux/missing' automake-1.16
  427. AWK = gawk
  428. BROWSER =
  429. BUILD_CFLAGS =
  430. BUILD_CPPFLAGS =
  431. BUILD_LDFLAGS =
  432. CC = /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/linux-devkit/sysroots/x86_64-arago-linux/usr/bin/arm-linux-gnueabihf-gcc
  433. CCDEPMODE = depmode=gcc3
  434. CC_FOR_BUILD = gcc
  435. CFLAGS = -g -O2
  436. CPP = /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/linux-devkit/sysroots/x86_64-arago-linux/usr/bin/arm-linux-gnueabihf-gcc -E
  437. CPPFLAGS =
  438. CRYPTO_LIBS =
  439. CRYPT_CFLAGS =
  440. CRYPT_LIBS = -lcrypt
  441. CYGPATH_W = echo
  442. DEFS = -DHAVE_CONFIG_H
  443. DEPDIR = .deps
  444. DLLTOOL = false
  445. DSYMUTIL =
  446. DUMPBIN = :
  447. ECHO_C =
  448. ECHO_N = -n
  449. ECHO_T =
  450. ECONF_CFLAGS =
  451. ECONF_LIBS =
  452. EGREP = /bin/grep -E
  453. EXEEXT =
  454. EXE_CFLAGS = -fpie
  455. EXE_LDFLAGS = -pie -Wl,-z,now
  456. FGREP = /bin/grep -F
  457. FO2PDF =
  458. GETTEXT_MACRO_VERSION = 0.18
  459. GMSGFMT = /usr/bin/msgfmt
  460. GMSGFMT_015 = /usr/bin/msgfmt
  461. GREP = /bin/grep
  462. INSTALL = /usr/bin/install -c
  463. INSTALL_DATA = ${INSTALL} -m 644
  464. INSTALL_PROGRAM = ${INSTALL}
  465. INSTALL_SCRIPT = ${INSTALL}
  466. INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
  467. INTLLIBS =
  468. INTL_MACOSX_LIBS =
  469. LD = /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/linux-devkit/sysroots/x86_64-arago-linux/usr/arm-linux-gnueabihf/bin/ld
  470. LDFLAGS = -Wl,--as-needed -Wl,--no-undefined -Wl,-O1
  471. LEX = flex
  472. LEXLIB = -lfl
  473. LEX_OUTPUT_ROOT = lex.yy
  474. LIBAUDIT =
  475. LIBCRYPT = -lcrypt
  476. LIBDB =
  477. LIBDL = -ldl
  478. LIBICONV = -liconv
  479. LIBINTL =
  480. LIBOBJS = ${LIBOBJDIR}memcmp$U.o
  481. LIBPRELUDE_CFLAGS =
  482. LIBPRELUDE_CONFIG = no
  483. LIBPRELUDE_CONFIG_PREFIX =
  484. LIBPRELUDE_LDFLAGS =
  485. LIBPRELUDE_LIBS =
  486. LIBPRELUDE_PREFIX =
  487. LIBPRELUDE_PTHREAD_CFLAGS =
  488. LIBS =
  489. LIBSELINUX =
  490. LIBTOOL = $(SHELL) $(top_builddir)/libtool
  491. LIPO =
  492. LN_S = ln -s
  493. LTLIBICONV = -liconv
  494. LTLIBINTL =
  495. LTLIBOBJS = ${LIBOBJDIR}memcmp$U.lo
  496. LT_SYS_LIBRARY_PATH =
  497. MAKEINFO = ${SHELL} '/opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/linux-pam-1.5.2/build-aux/missing' makeinfo
  498. MANIFEST_TOOL = :
  499. MKDIR_P = /bin/mkdir -p
  500. MSGFMT = /usr/bin/msgfmt
  501. MSGFMT_015 = /usr/bin/msgfmt
  502. MSGMERGE = /usr/bin/msgmerge
  503. NIS_CFLAGS =
  504. NIS_LIBS =
  505. NM = nm
  506. NMEDIT =
  507. NSL_CFLAGS =
  508. NSL_LIBS = -lnsl
  509. OBJDUMP = objdump
  510. OBJEXT = o
  511. OTOOL =
  512. OTOOL64 =
  513. PACKAGE = Linux-PAM
  514. PACKAGE_BUGREPORT =
  515. PACKAGE_NAME = Linux-PAM
  516. PACKAGE_STRING = Linux-PAM 1.5.2
  517. PACKAGE_TARNAME = Linux-PAM
  518. PACKAGE_URL =
  519. PACKAGE_VERSION = 1.5.2
  520. PATH_SEPARATOR = :
  521. PKG_CONFIG = /usr/bin/pkg-config
  522. PKG_CONFIG_LIBDIR =
  523. PKG_CONFIG_PATH =
  524. POSUB = po
  525. RANLIB = ranlib
  526. SCONFIGDIR = ${prefix}/etc/security
  527. SECUREDIR = ${exec_prefix}/lib/security
  528. SED = /bin/sed
  529. SET_MAKE =
  530. SHELL = /bin/bash
  531. STRINGPARAM_HMAC =
  532. STRINGPARAM_VENDORDIR = --stringparam vendordir '<vendordir>'
  533. STRIP = strip
  534. TIRPC_CFLAGS =
  535. TIRPC_LIBS =
  536. USE_NLS = yes
  537. VERSION = 1.5.2
  538. WARN_CFLAGS = -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wdeprecated -Winline -Wmain -Wmissing-declarations -Wmissing-format-attribute -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wshadow -Wstrict-prototypes -Wuninitialized -Wwrite-strings
  539. XGETTEXT = /usr/bin/xgettext
  540. XGETTEXT_015 = /usr/bin/xgettext
  541. XGETTEXT_EXTRA_OPTIONS =
  542. XMLCATALOG = /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/linux-devkit/sysroots/armv7ahf-neon-linux-gnueabi/usr/bin/xmlcatalog
  543. XMLLINT = /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/linux-devkit/sysroots/armv7ahf-neon-linux-gnueabi/usr/bin/xmllint
  544. XML_CATALOG_FILE = /etc/xml/catalog
  545. XSLTPROC = /usr/bin/xsltproc
  546. YACC = bison -y
  547. YFLAGS =
  548. abs_builddir = /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/linux-pam-1.5.2/modules/pam_pwhistory
  549. abs_srcdir = /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/linux-pam-1.5.2/modules/pam_pwhistory
  550. abs_top_builddir = /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/linux-pam-1.5.2
  551. abs_top_srcdir = /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/linux-pam-1.5.2
  552. ac_ct_AR =
  553. ac_ct_CC =
  554. ac_ct_DUMPBIN = link -dump
  555. am__include = include
  556. am__leading_dot = .
  557. am__quote =
  558. am__tar = $${TAR-tar} chof - "$$tardir"
  559. am__untar = $${TAR-tar} xf -
  560. bindir = ${exec_prefix}/bin
  561. build = x86_64-pc-linux-gnu
  562. build_alias =
  563. build_cpu = x86_64
  564. build_os = linux-gnu
  565. build_vendor = pc
  566. builddir = .
  567. datadir = ${datarootdir}
  568. datarootdir = ${prefix}/share
  569. docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
  570. dvidir = ${docdir}
  571. exec_prefix = ${prefix}
  572. host = arm-unknown-linux-gnueabihf
  573. host_alias = arm-linux-gnueabihf
  574. host_cpu = arm
  575. host_os = linux-gnueabihf
  576. host_vendor = unknown
  577. htmldir = ${docdir}
  578. includedir = ${prefix}/include
  579. infodir = ${datarootdir}/info
  580. install_sh = ${SHELL} /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/linux-pam-1.5.2/build-aux/install-sh
  581. libdir = ${exec_prefix}/lib
  582. libexecdir = ${exec_prefix}/libexec
  583. localedir = ${datarootdir}/locale
  584. localstatedir = ${prefix}/var
  585. mandir = ${datarootdir}/man
  586. mkdir_p = $(MKDIR_P)
  587. oldincludedir = /usr/include
  588. pam_xauth_path = /usr/bin/xauth
  589. pdfdir = ${docdir}
  590. prefix = /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/linux-pam-1.5.2/release
  591. program_transform_name = s,x,x,
  592. psdir = ${docdir}
  593. sbindir = ${exec_prefix}/sbin
  594. sharedstatedir = ${prefix}/com
  595. srcdir = .
  596. sysconfdir = ${prefix}/etc
  597. systemdunitdir =
  598. target_alias =
  599. top_build_prefix = ../../
  600. top_builddir = ../..
  601. top_srcdir = ../..
  602. CLEANFILES = *~
  603. MAINTAINERCLEANFILES = $(MANS) README
  604. EXTRA_DIST = $(XMLS)
  605. #dist_man_MANS = pam_pwhistory.8 pwhistory_helper.8
  606. XMLS = README.xml pam_pwhistory.8.xml pwhistory_helper.8.xml
  607. dist_check_SCRIPTS = tst-pam_pwhistory
  608. TESTS = $(dist_check_SCRIPTS)
  609. securelibdir = $(SECUREDIR)
  610. secureconfdir = $(SCONFIGDIR)
  611. AM_CFLAGS = -I$(top_srcdir)/libpam/include -I$(top_srcdir)/libpamc/include \
  612. $(WARN_CFLAGS) -DPWHISTORY_HELPER=\"$(sbindir)/pwhistory_helper\"
  613. pam_pwhistory_la_LDFLAGS = -no-undefined -avoid-version -module \
  614. $(am__append_1)
  615. noinst_HEADERS = opasswd.h
  616. securelib_LTLIBRARIES = pam_pwhistory.la
  617. pam_pwhistory_la_CFLAGS = $(AM_CFLAGS)
  618. pam_pwhistory_la_LIBADD = $(top_builddir)/libpam/libpam.la -lcrypt
  619. pam_pwhistory_la_SOURCES = pam_pwhistory.c opasswd.c
  620. pwhistory_helper_CFLAGS = $(AM_CFLAGS) -DHELPER_COMPILE=\"pwhistory_helper\" -fpie
  621. pwhistory_helper_SOURCES = pwhistory_helper.c opasswd.c
  622. pwhistory_helper_LDFLAGS = -pie -Wl,-z,now
  623. pwhistory_helper_LDADD = $(top_builddir)/libpam/libpam.la -lcrypt
  624. #dist_noinst_DATA = README
  625. all: all-am
  626. .SUFFIXES:
  627. .SUFFIXES: .c .lo .log .o .obj .test .test$(EXEEXT) .trs
  628. $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
  629. @for dep in $?; do \
  630. case '$(am__configure_deps)' in \
  631. *$$dep*) \
  632. ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
  633. && { if test -f $@; then exit 0; else break; fi; }; \
  634. exit 1;; \
  635. esac; \
  636. done; \
  637. echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu modules/pam_pwhistory/Makefile'; \
  638. $(am__cd) $(top_srcdir) && \
  639. $(AUTOMAKE) --gnu modules/pam_pwhistory/Makefile
  640. Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  641. @case '$?' in \
  642. *config.status*) \
  643. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
  644. *) \
  645. echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
  646. cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
  647. esac;
  648. $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
  649. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  650. $(top_srcdir)/configure: $(am__configure_deps)
  651. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  652. $(ACLOCAL_M4): $(am__aclocal_m4_deps)
  653. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  654. $(am__aclocal_m4_deps):
  655. install-sbinPROGRAMS: $(sbin_PROGRAMS)
  656. @$(NORMAL_INSTALL)
  657. @list='$(sbin_PROGRAMS)'; test -n "$(sbindir)" || list=; \
  658. if test -n "$$list"; then \
  659. echo " $(MKDIR_P) '$(DESTDIR)$(sbindir)'"; \
  660. $(MKDIR_P) "$(DESTDIR)$(sbindir)" || exit 1; \
  661. fi; \
  662. for p in $$list; do echo "$$p $$p"; done | \
  663. sed 's/$(EXEEXT)$$//' | \
  664. while read p p1; do if test -f $$p \
  665. || test -f $$p1 \
  666. ; then echo "$$p"; echo "$$p"; else :; fi; \
  667. done | \
  668. sed -e 'p;s,.*/,,;n;h' \
  669. -e 's|.*|.|' \
  670. -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
  671. sed 'N;N;N;s,\n, ,g' | \
  672. $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
  673. { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
  674. if ($$2 == $$4) files[d] = files[d] " " $$1; \
  675. else { print "f", $$3 "/" $$4, $$1; } } \
  676. END { for (d in files) print "f", d, files[d] }' | \
  677. while read type dir files; do \
  678. if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
  679. test -z "$$files" || { \
  680. echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(sbindir)$$dir'"; \
  681. $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(sbindir)$$dir" || exit $$?; \
  682. } \
  683. ; done
  684. uninstall-sbinPROGRAMS:
  685. @$(NORMAL_UNINSTALL)
  686. @list='$(sbin_PROGRAMS)'; test -n "$(sbindir)" || list=; \
  687. files=`for p in $$list; do echo "$$p"; done | \
  688. sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
  689. -e 's/$$/$(EXEEXT)/' \
  690. `; \
  691. test -n "$$list" || exit 0; \
  692. echo " ( cd '$(DESTDIR)$(sbindir)' && rm -f" $$files ")"; \
  693. cd "$(DESTDIR)$(sbindir)" && rm -f $$files
  694. clean-sbinPROGRAMS:
  695. @list='$(sbin_PROGRAMS)'; test -n "$$list" || exit 0; \
  696. echo " rm -f" $$list; \
  697. rm -f $$list || exit $$?; \
  698. test -n "$(EXEEXT)" || exit 0; \
  699. list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
  700. echo " rm -f" $$list; \
  701. rm -f $$list
  702. install-securelibLTLIBRARIES: $(securelib_LTLIBRARIES)
  703. @$(NORMAL_INSTALL)
  704. @list='$(securelib_LTLIBRARIES)'; test -n "$(securelibdir)" || list=; \
  705. list2=; for p in $$list; do \
  706. if test -f $$p; then \
  707. list2="$$list2 $$p"; \
  708. else :; fi; \
  709. done; \
  710. test -z "$$list2" || { \
  711. echo " $(MKDIR_P) '$(DESTDIR)$(securelibdir)'"; \
  712. $(MKDIR_P) "$(DESTDIR)$(securelibdir)" || exit 1; \
  713. echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(securelibdir)'"; \
  714. $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(securelibdir)"; \
  715. }
  716. uninstall-securelibLTLIBRARIES:
  717. @$(NORMAL_UNINSTALL)
  718. @list='$(securelib_LTLIBRARIES)'; test -n "$(securelibdir)" || list=; \
  719. for p in $$list; do \
  720. $(am__strip_dir) \
  721. echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(securelibdir)/$$f'"; \
  722. $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(securelibdir)/$$f"; \
  723. done
  724. clean-securelibLTLIBRARIES:
  725. -test -z "$(securelib_LTLIBRARIES)" || rm -f $(securelib_LTLIBRARIES)
  726. @list='$(securelib_LTLIBRARIES)'; \
  727. locs=`for p in $$list; do echo $$p; done | \
  728. sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
  729. sort -u`; \
  730. test -z "$$locs" || { \
  731. echo rm -f $${locs}; \
  732. rm -f $${locs}; \
  733. }
  734. pam_pwhistory.la: $(pam_pwhistory_la_OBJECTS) $(pam_pwhistory_la_DEPENDENCIES) $(EXTRA_pam_pwhistory_la_DEPENDENCIES)
  735. $(AM_V_CCLD)$(pam_pwhistory_la_LINK) -rpath $(securelibdir) $(pam_pwhistory_la_OBJECTS) $(pam_pwhistory_la_LIBADD) $(LIBS)
  736. pwhistory_helper$(EXEEXT): $(pwhistory_helper_OBJECTS) $(pwhistory_helper_DEPENDENCIES) $(EXTRA_pwhistory_helper_DEPENDENCIES)
  737. @rm -f pwhistory_helper$(EXEEXT)
  738. $(AM_V_CCLD)$(pwhistory_helper_LINK) $(pwhistory_helper_OBJECTS) $(pwhistory_helper_LDADD) $(LIBS)
  739. mostlyclean-compile:
  740. -rm -f *.$(OBJEXT)
  741. distclean-compile:
  742. -rm -f *.tab.c
  743. include ./$(DEPDIR)/pam_pwhistory_la-opasswd.Plo # am--include-marker
  744. include ./$(DEPDIR)/pam_pwhistory_la-pam_pwhistory.Plo # am--include-marker
  745. include ./$(DEPDIR)/pwhistory_helper-opasswd.Po # am--include-marker
  746. include ./$(DEPDIR)/pwhistory_helper-pwhistory_helper.Po # am--include-marker
  747. $(am__depfiles_remade):
  748. @$(MKDIR_P) $(@D)
  749. @echo '# dummy' >$@-t && $(am__mv) $@-t $@
  750. am--depfiles: $(am__depfiles_remade)
  751. .c.o:
  752. $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
  753. $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
  754. # $(AM_V_CC)source='$<' object='$@' libtool=no \
  755. # DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
  756. # $(AM_V_CC_no)$(COMPILE) -c -o $@ $<
  757. .c.obj:
  758. $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
  759. $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
  760. # $(AM_V_CC)source='$<' object='$@' libtool=no \
  761. # DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
  762. # $(AM_V_CC_no)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
  763. .c.lo:
  764. $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
  765. $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
  766. # $(AM_V_CC)source='$<' object='$@' libtool=yes \
  767. # DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
  768. # $(AM_V_CC_no)$(LTCOMPILE) -c -o $@ $<
  769. pam_pwhistory_la-pam_pwhistory.lo: pam_pwhistory.c
  770. $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(pam_pwhistory_la_CFLAGS) $(CFLAGS) -MT pam_pwhistory_la-pam_pwhistory.lo -MD -MP -MF $(DEPDIR)/pam_pwhistory_la-pam_pwhistory.Tpo -c -o pam_pwhistory_la-pam_pwhistory.lo `test -f 'pam_pwhistory.c' || echo '$(srcdir)/'`pam_pwhistory.c
  771. $(AM_V_at)$(am__mv) $(DEPDIR)/pam_pwhistory_la-pam_pwhistory.Tpo $(DEPDIR)/pam_pwhistory_la-pam_pwhistory.Plo
  772. # $(AM_V_CC)source='pam_pwhistory.c' object='pam_pwhistory_la-pam_pwhistory.lo' libtool=yes \
  773. # DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
  774. # $(AM_V_CC_no)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(pam_pwhistory_la_CFLAGS) $(CFLAGS) -c -o pam_pwhistory_la-pam_pwhistory.lo `test -f 'pam_pwhistory.c' || echo '$(srcdir)/'`pam_pwhistory.c
  775. pam_pwhistory_la-opasswd.lo: opasswd.c
  776. $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(pam_pwhistory_la_CFLAGS) $(CFLAGS) -MT pam_pwhistory_la-opasswd.lo -MD -MP -MF $(DEPDIR)/pam_pwhistory_la-opasswd.Tpo -c -o pam_pwhistory_la-opasswd.lo `test -f 'opasswd.c' || echo '$(srcdir)/'`opasswd.c
  777. $(AM_V_at)$(am__mv) $(DEPDIR)/pam_pwhistory_la-opasswd.Tpo $(DEPDIR)/pam_pwhistory_la-opasswd.Plo
  778. # $(AM_V_CC)source='opasswd.c' object='pam_pwhistory_la-opasswd.lo' libtool=yes \
  779. # DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
  780. # $(AM_V_CC_no)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(pam_pwhistory_la_CFLAGS) $(CFLAGS) -c -o pam_pwhistory_la-opasswd.lo `test -f 'opasswd.c' || echo '$(srcdir)/'`opasswd.c
  781. pwhistory_helper-pwhistory_helper.o: pwhistory_helper.c
  782. $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(pwhistory_helper_CFLAGS) $(CFLAGS) -MT pwhistory_helper-pwhistory_helper.o -MD -MP -MF $(DEPDIR)/pwhistory_helper-pwhistory_helper.Tpo -c -o pwhistory_helper-pwhistory_helper.o `test -f 'pwhistory_helper.c' || echo '$(srcdir)/'`pwhistory_helper.c
  783. $(AM_V_at)$(am__mv) $(DEPDIR)/pwhistory_helper-pwhistory_helper.Tpo $(DEPDIR)/pwhistory_helper-pwhistory_helper.Po
  784. # $(AM_V_CC)source='pwhistory_helper.c' object='pwhistory_helper-pwhistory_helper.o' libtool=no \
  785. # DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
  786. # $(AM_V_CC_no)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(pwhistory_helper_CFLAGS) $(CFLAGS) -c -o pwhistory_helper-pwhistory_helper.o `test -f 'pwhistory_helper.c' || echo '$(srcdir)/'`pwhistory_helper.c
  787. pwhistory_helper-pwhistory_helper.obj: pwhistory_helper.c
  788. $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(pwhistory_helper_CFLAGS) $(CFLAGS) -MT pwhistory_helper-pwhistory_helper.obj -MD -MP -MF $(DEPDIR)/pwhistory_helper-pwhistory_helper.Tpo -c -o pwhistory_helper-pwhistory_helper.obj `if test -f 'pwhistory_helper.c'; then $(CYGPATH_W) 'pwhistory_helper.c'; else $(CYGPATH_W) '$(srcdir)/pwhistory_helper.c'; fi`
  789. $(AM_V_at)$(am__mv) $(DEPDIR)/pwhistory_helper-pwhistory_helper.Tpo $(DEPDIR)/pwhistory_helper-pwhistory_helper.Po
  790. # $(AM_V_CC)source='pwhistory_helper.c' object='pwhistory_helper-pwhistory_helper.obj' libtool=no \
  791. # DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
  792. # $(AM_V_CC_no)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(pwhistory_helper_CFLAGS) $(CFLAGS) -c -o pwhistory_helper-pwhistory_helper.obj `if test -f 'pwhistory_helper.c'; then $(CYGPATH_W) 'pwhistory_helper.c'; else $(CYGPATH_W) '$(srcdir)/pwhistory_helper.c'; fi`
  793. pwhistory_helper-opasswd.o: opasswd.c
  794. $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(pwhistory_helper_CFLAGS) $(CFLAGS) -MT pwhistory_helper-opasswd.o -MD -MP -MF $(DEPDIR)/pwhistory_helper-opasswd.Tpo -c -o pwhistory_helper-opasswd.o `test -f 'opasswd.c' || echo '$(srcdir)/'`opasswd.c
  795. $(AM_V_at)$(am__mv) $(DEPDIR)/pwhistory_helper-opasswd.Tpo $(DEPDIR)/pwhistory_helper-opasswd.Po
  796. # $(AM_V_CC)source='opasswd.c' object='pwhistory_helper-opasswd.o' libtool=no \
  797. # DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
  798. # $(AM_V_CC_no)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(pwhistory_helper_CFLAGS) $(CFLAGS) -c -o pwhistory_helper-opasswd.o `test -f 'opasswd.c' || echo '$(srcdir)/'`opasswd.c
  799. pwhistory_helper-opasswd.obj: opasswd.c
  800. $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(pwhistory_helper_CFLAGS) $(CFLAGS) -MT pwhistory_helper-opasswd.obj -MD -MP -MF $(DEPDIR)/pwhistory_helper-opasswd.Tpo -c -o pwhistory_helper-opasswd.obj `if test -f 'opasswd.c'; then $(CYGPATH_W) 'opasswd.c'; else $(CYGPATH_W) '$(srcdir)/opasswd.c'; fi`
  801. $(AM_V_at)$(am__mv) $(DEPDIR)/pwhistory_helper-opasswd.Tpo $(DEPDIR)/pwhistory_helper-opasswd.Po
  802. # $(AM_V_CC)source='opasswd.c' object='pwhistory_helper-opasswd.obj' libtool=no \
  803. # DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
  804. # $(AM_V_CC_no)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(pwhistory_helper_CFLAGS) $(CFLAGS) -c -o pwhistory_helper-opasswd.obj `if test -f 'opasswd.c'; then $(CYGPATH_W) 'opasswd.c'; else $(CYGPATH_W) '$(srcdir)/opasswd.c'; fi`
  805. mostlyclean-libtool:
  806. -rm -f *.lo
  807. clean-libtool:
  808. -rm -rf .libs _libs
  809. install-man8: $(dist_man_MANS)
  810. @$(NORMAL_INSTALL)
  811. @list1=''; \
  812. list2='$(dist_man_MANS)'; \
  813. test -n "$(man8dir)" \
  814. && test -n "`echo $$list1$$list2`" \
  815. || exit 0; \
  816. echo " $(MKDIR_P) '$(DESTDIR)$(man8dir)'"; \
  817. $(MKDIR_P) "$(DESTDIR)$(man8dir)" || exit 1; \
  818. { for i in $$list1; do echo "$$i"; done; \
  819. if test -n "$$list2"; then \
  820. for i in $$list2; do echo "$$i"; done \
  821. | sed -n '/\.8[a-z]*$$/p'; \
  822. fi; \
  823. } | while read p; do \
  824. if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
  825. echo "$$d$$p"; echo "$$p"; \
  826. done | \
  827. sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^8][0-9a-z]*$$,8,;x' \
  828. -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \
  829. sed 'N;N;s,\n, ,g' | { \
  830. list=; while read file base inst; do \
  831. if test "$$base" = "$$inst"; then list="$$list $$file"; else \
  832. echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man8dir)/$$inst'"; \
  833. $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man8dir)/$$inst" || exit $$?; \
  834. fi; \
  835. done; \
  836. for i in $$list; do echo "$$i"; done | $(am__base_list) | \
  837. while read files; do \
  838. test -z "$$files" || { \
  839. echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man8dir)'"; \
  840. $(INSTALL_DATA) $$files "$(DESTDIR)$(man8dir)" || exit $$?; }; \
  841. done; }
  842. uninstall-man8:
  843. @$(NORMAL_UNINSTALL)
  844. @list=''; test -n "$(man8dir)" || exit 0; \
  845. files=`{ for i in $$list; do echo "$$i"; done; \
  846. l2='$(dist_man_MANS)'; for i in $$l2; do echo "$$i"; done | \
  847. sed -n '/\.8[a-z]*$$/p'; \
  848. } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^8][0-9a-z]*$$,8,;x' \
  849. -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
  850. dir='$(DESTDIR)$(man8dir)'; $(am__uninstall_files_from_dir)
  851. ID: $(am__tagged_files)
  852. $(am__define_uniq_tagged_files); mkid -fID $$unique
  853. tags: tags-am
  854. TAGS: tags
  855. tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  856. set x; \
  857. here=`pwd`; \
  858. $(am__define_uniq_tagged_files); \
  859. shift; \
  860. if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
  861. test -n "$$unique" || unique=$$empty_fix; \
  862. if test $$# -gt 0; then \
  863. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  864. "$$@" $$unique; \
  865. else \
  866. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  867. $$unique; \
  868. fi; \
  869. fi
  870. ctags: ctags-am
  871. CTAGS: ctags
  872. ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  873. $(am__define_uniq_tagged_files); \
  874. test -z "$(CTAGS_ARGS)$$unique" \
  875. || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
  876. $$unique
  877. GTAGS:
  878. here=`$(am__cd) $(top_builddir) && pwd` \
  879. && $(am__cd) $(top_srcdir) \
  880. && gtags -i $(GTAGS_ARGS) "$$here"
  881. cscopelist: cscopelist-am
  882. cscopelist-am: $(am__tagged_files)
  883. list='$(am__tagged_files)'; \
  884. case "$(srcdir)" in \
  885. [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
  886. *) sdir=$(subdir)/$(srcdir) ;; \
  887. esac; \
  888. for i in $$list; do \
  889. if test -f "$$i"; then \
  890. echo "$(subdir)/$$i"; \
  891. else \
  892. echo "$$sdir/$$i"; \
  893. fi; \
  894. done >> $(top_builddir)/cscope.files
  895. distclean-tags:
  896. -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
  897. # Recover from deleted '.trs' file; this should ensure that
  898. # "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create
  899. # both 'foo.log' and 'foo.trs'. Break the recipe in two subshells
  900. # to avoid problems with "make -n".
  901. .log.trs:
  902. rm -f $< $@
  903. $(MAKE) $(AM_MAKEFLAGS) $<
  904. # Leading 'am--fnord' is there to ensure the list of targets does not
  905. # expand to empty, as could happen e.g. with make check TESTS=''.
  906. am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck)
  907. am--force-recheck:
  908. @:
  909. $(TEST_SUITE_LOG): $(TEST_LOGS)
  910. @$(am__set_TESTS_bases); \
  911. am__f_ok () { test -f "$$1" && test -r "$$1"; }; \
  912. redo_bases=`for i in $$bases; do \
  913. am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \
  914. done`; \
  915. if test -n "$$redo_bases"; then \
  916. redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \
  917. redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \
  918. if $(am__make_dryrun); then :; else \
  919. rm -f $$redo_logs && rm -f $$redo_results || exit 1; \
  920. fi; \
  921. fi; \
  922. if test -n "$$am__remaking_logs"; then \
  923. echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \
  924. "recursion detected" >&2; \
  925. elif test -n "$$redo_logs"; then \
  926. am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \
  927. fi; \
  928. if $(am__make_dryrun); then :; else \
  929. st=0; \
  930. errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \
  931. for i in $$redo_bases; do \
  932. test -f $$i.trs && test -r $$i.trs \
  933. || { echo "$$errmsg $$i.trs" >&2; st=1; }; \
  934. test -f $$i.log && test -r $$i.log \
  935. || { echo "$$errmsg $$i.log" >&2; st=1; }; \
  936. done; \
  937. test $$st -eq 0 || exit 1; \
  938. fi
  939. @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \
  940. ws='[ ]'; \
  941. results=`for b in $$bases; do echo $$b.trs; done`; \
  942. test -n "$$results" || results=/dev/null; \
  943. all=` grep "^$$ws*:test-result:" $$results | wc -l`; \
  944. pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \
  945. fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \
  946. skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \
  947. xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \
  948. xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \
  949. error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \
  950. if test `expr $$fail + $$xpass + $$error` -eq 0; then \
  951. success=true; \
  952. else \
  953. success=false; \
  954. fi; \
  955. br='==================='; br=$$br$$br$$br$$br; \
  956. result_count () \
  957. { \
  958. if test x"$$1" = x"--maybe-color"; then \
  959. maybe_colorize=yes; \
  960. elif test x"$$1" = x"--no-color"; then \
  961. maybe_colorize=no; \
  962. else \
  963. echo "$@: invalid 'result_count' usage" >&2; exit 4; \
  964. fi; \
  965. shift; \
  966. desc=$$1 count=$$2; \
  967. if test $$maybe_colorize = yes && test $$count -gt 0; then \
  968. color_start=$$3 color_end=$$std; \
  969. else \
  970. color_start= color_end=; \
  971. fi; \
  972. echo "$${color_start}# $$desc $$count$${color_end}"; \
  973. }; \
  974. create_testsuite_report () \
  975. { \
  976. result_count $$1 "TOTAL:" $$all "$$brg"; \
  977. result_count $$1 "PASS: " $$pass "$$grn"; \
  978. result_count $$1 "SKIP: " $$skip "$$blu"; \
  979. result_count $$1 "XFAIL:" $$xfail "$$lgn"; \
  980. result_count $$1 "FAIL: " $$fail "$$red"; \
  981. result_count $$1 "XPASS:" $$xpass "$$red"; \
  982. result_count $$1 "ERROR:" $$error "$$mgn"; \
  983. }; \
  984. { \
  985. echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \
  986. $(am__rst_title); \
  987. create_testsuite_report --no-color; \
  988. echo; \
  989. echo ".. contents:: :depth: 2"; \
  990. echo; \
  991. for b in $$bases; do echo $$b; done \
  992. | $(am__create_global_log); \
  993. } >$(TEST_SUITE_LOG).tmp || exit 1; \
  994. mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \
  995. if $$success; then \
  996. col="$$grn"; \
  997. else \
  998. col="$$red"; \
  999. test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \
  1000. fi; \
  1001. echo "$${col}$$br$${std}"; \
  1002. echo "$${col}Testsuite summary"$(AM_TESTSUITE_SUMMARY_HEADER)"$${std}"; \
  1003. echo "$${col}$$br$${std}"; \
  1004. create_testsuite_report --maybe-color; \
  1005. echo "$$col$$br$$std"; \
  1006. if $$success; then :; else \
  1007. echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \
  1008. if test -n "$(PACKAGE_BUGREPORT)"; then \
  1009. echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \
  1010. fi; \
  1011. echo "$$col$$br$$std"; \
  1012. fi; \
  1013. $$success || exit 1
  1014. check-TESTS: $(dist_check_SCRIPTS)
  1015. @list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list
  1016. @list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list
  1017. @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
  1018. @set +e; $(am__set_TESTS_bases); \
  1019. log_list=`for i in $$bases; do echo $$i.log; done`; \
  1020. trs_list=`for i in $$bases; do echo $$i.trs; done`; \
  1021. log_list=`echo $$log_list`; trs_list=`echo $$trs_list`; \
  1022. $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) TEST_LOGS="$$log_list"; \
  1023. exit $$?;
  1024. recheck: all $(dist_check_SCRIPTS)
  1025. @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
  1026. @set +e; $(am__set_TESTS_bases); \
  1027. bases=`for i in $$bases; do echo $$i; done \
  1028. | $(am__list_recheck_tests)` || exit 1; \
  1029. log_list=`for i in $$bases; do echo $$i.log; done`; \
  1030. log_list=`echo $$log_list`; \
  1031. $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \
  1032. am__force_recheck=am--force-recheck \
  1033. TEST_LOGS="$$log_list"; \
  1034. exit $$?
  1035. tst-pam_pwhistory.log: tst-pam_pwhistory
  1036. @p='tst-pam_pwhistory'; \
  1037. b='tst-pam_pwhistory'; \
  1038. $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
  1039. --log-file $$b.log --trs-file $$b.trs \
  1040. $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
  1041. "$$tst" $(AM_TESTS_FD_REDIRECT)
  1042. .test.log:
  1043. @p='$<'; \
  1044. $(am__set_b); \
  1045. $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \
  1046. --log-file $$b.log --trs-file $$b.trs \
  1047. $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
  1048. "$$tst" $(AM_TESTS_FD_REDIRECT)
  1049. #.test$(EXEEXT).log:
  1050. # @p='$<'; \
  1051. # $(am__set_b); \
  1052. # $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \
  1053. # --log-file $$b.log --trs-file $$b.trs \
  1054. # $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
  1055. # "$$tst" $(AM_TESTS_FD_REDIRECT)
  1056. distdir: $(BUILT_SOURCES)
  1057. $(MAKE) $(AM_MAKEFLAGS) distdir-am
  1058. distdir-am: $(DISTFILES)
  1059. @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  1060. topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  1061. list='$(DISTFILES)'; \
  1062. dist_files=`for file in $$list; do echo $$file; done | \
  1063. sed -e "s|^$$srcdirstrip/||;t" \
  1064. -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
  1065. case $$dist_files in \
  1066. */*) $(MKDIR_P) `echo "$$dist_files" | \
  1067. sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
  1068. sort -u` ;; \
  1069. esac; \
  1070. for file in $$dist_files; do \
  1071. if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
  1072. if test -d $$d/$$file; then \
  1073. dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
  1074. if test -d "$(distdir)/$$file"; then \
  1075. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  1076. fi; \
  1077. if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
  1078. cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
  1079. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  1080. fi; \
  1081. cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
  1082. else \
  1083. test -f "$(distdir)/$$file" \
  1084. || cp -p $$d/$$file "$(distdir)/$$file" \
  1085. || exit 1; \
  1086. fi; \
  1087. done
  1088. check-am: all-am
  1089. $(MAKE) $(AM_MAKEFLAGS) $(dist_check_SCRIPTS)
  1090. $(MAKE) $(AM_MAKEFLAGS) check-TESTS
  1091. check: check-am
  1092. all-am: Makefile $(PROGRAMS) $(LTLIBRARIES) $(MANS) $(DATA) $(HEADERS)
  1093. installdirs:
  1094. for dir in "$(DESTDIR)$(sbindir)" "$(DESTDIR)$(securelibdir)" "$(DESTDIR)$(man8dir)"; do \
  1095. test -z "$$dir" || $(MKDIR_P) "$$dir"; \
  1096. done
  1097. install: install-am
  1098. install-exec: install-exec-am
  1099. install-data: install-data-am
  1100. uninstall: uninstall-am
  1101. install-am: all-am
  1102. @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
  1103. installcheck: installcheck-am
  1104. install-strip:
  1105. if test -z '$(STRIP)'; then \
  1106. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  1107. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  1108. install; \
  1109. else \
  1110. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  1111. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  1112. "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
  1113. fi
  1114. mostlyclean-generic:
  1115. -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS)
  1116. -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs)
  1117. -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
  1118. clean-generic:
  1119. -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
  1120. distclean-generic:
  1121. -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
  1122. -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
  1123. maintainer-clean-generic:
  1124. @echo "This command is intended for maintainers to use"
  1125. @echo "it deletes files that may require special tools to rebuild."
  1126. -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
  1127. clean: clean-am
  1128. clean-am: clean-generic clean-libtool clean-sbinPROGRAMS \
  1129. clean-securelibLTLIBRARIES mostlyclean-am
  1130. distclean: distclean-am
  1131. -rm -f ./$(DEPDIR)/pam_pwhistory_la-opasswd.Plo
  1132. -rm -f ./$(DEPDIR)/pam_pwhistory_la-pam_pwhistory.Plo
  1133. -rm -f ./$(DEPDIR)/pwhistory_helper-opasswd.Po
  1134. -rm -f ./$(DEPDIR)/pwhistory_helper-pwhistory_helper.Po
  1135. -rm -f Makefile
  1136. distclean-am: clean-am distclean-compile distclean-generic \
  1137. distclean-tags
  1138. dvi: dvi-am
  1139. dvi-am:
  1140. html: html-am
  1141. html-am:
  1142. info: info-am
  1143. info-am:
  1144. install-data-am: install-man install-securelibLTLIBRARIES
  1145. install-dvi: install-dvi-am
  1146. install-dvi-am:
  1147. install-exec-am: install-sbinPROGRAMS
  1148. install-html: install-html-am
  1149. install-html-am:
  1150. install-info: install-info-am
  1151. install-info-am:
  1152. install-man: install-man8
  1153. install-pdf: install-pdf-am
  1154. install-pdf-am:
  1155. install-ps: install-ps-am
  1156. install-ps-am:
  1157. installcheck-am:
  1158. maintainer-clean: maintainer-clean-am
  1159. -rm -f ./$(DEPDIR)/pam_pwhistory_la-opasswd.Plo
  1160. -rm -f ./$(DEPDIR)/pam_pwhistory_la-pam_pwhistory.Plo
  1161. -rm -f ./$(DEPDIR)/pwhistory_helper-opasswd.Po
  1162. -rm -f ./$(DEPDIR)/pwhistory_helper-pwhistory_helper.Po
  1163. -rm -f Makefile
  1164. maintainer-clean-am: distclean-am maintainer-clean-generic
  1165. mostlyclean: mostlyclean-am
  1166. mostlyclean-am: mostlyclean-compile mostlyclean-generic \
  1167. mostlyclean-libtool
  1168. pdf: pdf-am
  1169. pdf-am:
  1170. ps: ps-am
  1171. ps-am:
  1172. uninstall-am: uninstall-man uninstall-sbinPROGRAMS \
  1173. uninstall-securelibLTLIBRARIES
  1174. uninstall-man: uninstall-man8
  1175. .MAKE: check-am install-am install-strip
  1176. .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-TESTS \
  1177. check-am clean clean-generic clean-libtool clean-sbinPROGRAMS \
  1178. clean-securelibLTLIBRARIES cscopelist-am ctags ctags-am \
  1179. distclean distclean-compile distclean-generic \
  1180. distclean-libtool distclean-tags distdir dvi dvi-am html \
  1181. html-am info info-am install install-am install-data \
  1182. install-data-am install-dvi install-dvi-am install-exec \
  1183. install-exec-am install-html install-html-am install-info \
  1184. install-info-am install-man install-man8 install-pdf \
  1185. install-pdf-am install-ps install-ps-am install-sbinPROGRAMS \
  1186. install-securelibLTLIBRARIES install-strip installcheck \
  1187. installcheck-am installdirs maintainer-clean \
  1188. maintainer-clean-generic mostlyclean mostlyclean-compile \
  1189. mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
  1190. recheck tags tags-am uninstall uninstall-am uninstall-man \
  1191. uninstall-man8 uninstall-sbinPROGRAMS \
  1192. uninstall-securelibLTLIBRARIES
  1193. .PRECIOUS: Makefile
  1194. #-include $(top_srcdir)/Make.xml.rules
  1195. # Tell versions [3.59,3.63) of GNU make to not export all variables.
  1196. # Otherwise a system limit (for SysV at least) may be exceeded.
  1197. .NOEXPORT: