Makefile 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953
  1. # Makefile.in generated by automake 1.16.3 from Makefile.am.
  2. # libpam/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) 2005, 2006, 2007, 2009 Thorsten Kukuk <kukuk@thkukuk.de>
  13. #
  14. am__is_gnu_make = { \
  15. if test -z '$(MAKELEVEL)'; then \
  16. false; \
  17. elif test -n '$(MAKE_HOST)'; then \
  18. true; \
  19. elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
  20. true; \
  21. else \
  22. false; \
  23. fi; \
  24. }
  25. am__make_running_with_option = \
  26. case $${target_option-} in \
  27. ?) ;; \
  28. *) echo "am__make_running_with_option: internal error: invalid" \
  29. "target option '$${target_option-}' specified" >&2; \
  30. exit 1;; \
  31. esac; \
  32. has_opt=no; \
  33. sane_makeflags=$$MAKEFLAGS; \
  34. if $(am__is_gnu_make); then \
  35. sane_makeflags=$$MFLAGS; \
  36. else \
  37. case $$MAKEFLAGS in \
  38. *\\[\ \ ]*) \
  39. bs=\\; \
  40. sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
  41. | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
  42. esac; \
  43. fi; \
  44. skip_next=no; \
  45. strip_trailopt () \
  46. { \
  47. flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
  48. }; \
  49. for flg in $$sane_makeflags; do \
  50. test $$skip_next = yes && { skip_next=no; continue; }; \
  51. case $$flg in \
  52. *=*|--*) continue;; \
  53. -*I) strip_trailopt 'I'; skip_next=yes;; \
  54. -*I?*) strip_trailopt 'I';; \
  55. -*O) strip_trailopt 'O'; skip_next=yes;; \
  56. -*O?*) strip_trailopt 'O';; \
  57. -*l) strip_trailopt 'l'; skip_next=yes;; \
  58. -*l?*) strip_trailopt 'l';; \
  59. -[dEDm]) skip_next=yes;; \
  60. -[JT]) skip_next=yes;; \
  61. esac; \
  62. case $$flg in \
  63. *$$target_option*) has_opt=yes; break;; \
  64. esac; \
  65. done; \
  66. test $$has_opt = yes
  67. am__make_dryrun = (target_option=n; $(am__make_running_with_option))
  68. am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
  69. pkgdatadir = $(datadir)/Linux-PAM
  70. pkgincludedir = $(includedir)/Linux-PAM
  71. pkglibdir = $(libdir)/Linux-PAM
  72. pkglibexecdir = $(libexecdir)/Linux-PAM
  73. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
  74. install_sh_DATA = $(install_sh) -c -m 644
  75. install_sh_PROGRAM = $(install_sh) -c
  76. install_sh_SCRIPT = $(install_sh) -c
  77. INSTALL_HEADER = $(INSTALL_DATA)
  78. transform = $(program_transform_name)
  79. NORMAL_INSTALL = :
  80. PRE_INSTALL = :
  81. POST_INSTALL = :
  82. NORMAL_UNINSTALL = :
  83. PRE_UNINSTALL = :
  84. POST_UNINSTALL = :
  85. build_triplet = x86_64-pc-linux-gnu
  86. host_triplet = arm-unknown-linux-gnueabihf
  87. am__append_1 = -Wl,--version-script=$(srcdir)/libpam.map
  88. subdir = libpam
  89. ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
  90. am__aclocal_m4_deps = $(top_srcdir)/m4/attribute.m4 \
  91. $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/iconv.m4 \
  92. $(top_srcdir)/m4/intlmacosx.m4 \
  93. $(top_srcdir)/m4/jh_path_xml_catalog.m4 \
  94. $(top_srcdir)/m4/ld-O1.m4 $(top_srcdir)/m4/ld-as-needed.m4 \
  95. $(top_srcdir)/m4/ld-no-undefined.m4 \
  96. $(top_srcdir)/m4/ld-z-now.m4 $(top_srcdir)/m4/lib-ld.m4 \
  97. $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \
  98. $(top_srcdir)/m4/libprelude.m4 $(top_srcdir)/m4/libtool.m4 \
  99. $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
  100. $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
  101. $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \
  102. $(top_srcdir)/m4/progtest.m4 \
  103. $(top_srcdir)/m4/warn_lang_flags.m4 \
  104. $(top_srcdir)/m4/warnings.m4 $(top_srcdir)/configure.ac
  105. am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
  106. $(ACLOCAL_M4)
  107. DIST_COMMON = $(srcdir)/Makefile.am $(include_HEADERS) \
  108. $(noinst_HEADERS) $(am__DIST_COMMON)
  109. mkinstalldirs = $(install_sh) -d
  110. CONFIG_HEADER = $(top_builddir)/config.h
  111. CONFIG_CLEAN_FILES = pam.pc
  112. CONFIG_CLEAN_VPATH_FILES =
  113. am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
  114. am__vpath_adj = case $$p in \
  115. $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
  116. *) f=$$p;; \
  117. esac;
  118. am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
  119. am__install_max = 40
  120. am__nobase_strip_setup = \
  121. srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
  122. am__nobase_strip = \
  123. for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
  124. am__nobase_list = $(am__nobase_strip_setup); \
  125. for p in $$list; do echo "$$p $$p"; done | \
  126. sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
  127. $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
  128. if (++n[$$2] == $(am__install_max)) \
  129. { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
  130. END { for (dir in files) print dir, files[dir] }'
  131. am__base_list = \
  132. sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
  133. sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
  134. am__uninstall_files_from_dir = { \
  135. test -z "$$files" \
  136. || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
  137. || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
  138. $(am__cd) "$$dir" && rm -f $$files; }; \
  139. }
  140. am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgconfigdir)" \
  141. "$(DESTDIR)$(includedir)"
  142. LTLIBRARIES = $(lib_LTLIBRARIES)
  143. am__DEPENDENCIES_1 =
  144. libpam_la_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
  145. am_libpam_la_OBJECTS = pam_account.lo pam_auth.lo pam_data.lo \
  146. pam_delay.lo pam_dispatch.lo pam_end.lo pam_env.lo \
  147. pam_get_authtok.lo pam_handlers.lo pam_item.lo pam_misc.lo \
  148. pam_password.lo pam_prelude.lo pam_session.lo pam_start.lo \
  149. pam_strerror.lo pam_vprompt.lo pam_syslog.lo pam_dynamic.lo \
  150. pam_audit.lo pam_modutil_check_user.lo pam_modutil_cleanup.lo \
  151. pam_modutil_getpwnam.lo pam_modutil_ioloop.lo \
  152. pam_modutil_getgrgid.lo pam_modutil_getpwuid.lo \
  153. pam_modutil_getgrnam.lo pam_modutil_getspnam.lo \
  154. pam_modutil_getlogin.lo pam_modutil_ingroup.lo \
  155. pam_modutil_priv.lo pam_modutil_sanitize.lo \
  156. pam_modutil_searchkey.lo
  157. libpam_la_OBJECTS = $(am_libpam_la_OBJECTS)
  158. AM_V_lt = $(am__v_lt_$(V))
  159. am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY))
  160. am__v_lt_0 = --silent
  161. am__v_lt_1 =
  162. libpam_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
  163. $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
  164. $(libpam_la_LDFLAGS) $(LDFLAGS) -o $@
  165. AM_V_P = $(am__v_P_$(V))
  166. am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY))
  167. am__v_P_0 = false
  168. am__v_P_1 = :
  169. AM_V_GEN = $(am__v_GEN_$(V))
  170. am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
  171. am__v_GEN_0 = @echo " GEN " $@;
  172. am__v_GEN_1 =
  173. AM_V_at = $(am__v_at_$(V))
  174. am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
  175. am__v_at_0 = @
  176. am__v_at_1 =
  177. DEFAULT_INCLUDES = -I. -I$(top_builddir)
  178. depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp
  179. am__maybe_remake_depfiles = depfiles
  180. am__depfiles_remade = ./$(DEPDIR)/pam_account.Plo \
  181. ./$(DEPDIR)/pam_audit.Plo ./$(DEPDIR)/pam_auth.Plo \
  182. ./$(DEPDIR)/pam_data.Plo ./$(DEPDIR)/pam_delay.Plo \
  183. ./$(DEPDIR)/pam_dispatch.Plo ./$(DEPDIR)/pam_dynamic.Plo \
  184. ./$(DEPDIR)/pam_end.Plo ./$(DEPDIR)/pam_env.Plo \
  185. ./$(DEPDIR)/pam_get_authtok.Plo ./$(DEPDIR)/pam_handlers.Plo \
  186. ./$(DEPDIR)/pam_item.Plo ./$(DEPDIR)/pam_misc.Plo \
  187. ./$(DEPDIR)/pam_modutil_check_user.Plo \
  188. ./$(DEPDIR)/pam_modutil_cleanup.Plo \
  189. ./$(DEPDIR)/pam_modutil_getgrgid.Plo \
  190. ./$(DEPDIR)/pam_modutil_getgrnam.Plo \
  191. ./$(DEPDIR)/pam_modutil_getlogin.Plo \
  192. ./$(DEPDIR)/pam_modutil_getpwnam.Plo \
  193. ./$(DEPDIR)/pam_modutil_getpwuid.Plo \
  194. ./$(DEPDIR)/pam_modutil_getspnam.Plo \
  195. ./$(DEPDIR)/pam_modutil_ingroup.Plo \
  196. ./$(DEPDIR)/pam_modutil_ioloop.Plo \
  197. ./$(DEPDIR)/pam_modutil_priv.Plo \
  198. ./$(DEPDIR)/pam_modutil_sanitize.Plo \
  199. ./$(DEPDIR)/pam_modutil_searchkey.Plo \
  200. ./$(DEPDIR)/pam_password.Plo ./$(DEPDIR)/pam_prelude.Plo \
  201. ./$(DEPDIR)/pam_session.Plo ./$(DEPDIR)/pam_start.Plo \
  202. ./$(DEPDIR)/pam_strerror.Plo ./$(DEPDIR)/pam_syslog.Plo \
  203. ./$(DEPDIR)/pam_vprompt.Plo
  204. am__mv = mv -f
  205. COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
  206. $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
  207. LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
  208. $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
  209. $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
  210. $(AM_CFLAGS) $(CFLAGS)
  211. AM_V_CC = $(am__v_CC_$(V))
  212. am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY))
  213. am__v_CC_0 = @echo " CC " $@;
  214. am__v_CC_1 =
  215. CCLD = $(CC)
  216. LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
  217. $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
  218. $(AM_LDFLAGS) $(LDFLAGS) -o $@
  219. AM_V_CCLD = $(am__v_CCLD_$(V))
  220. am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY))
  221. am__v_CCLD_0 = @echo " CCLD " $@;
  222. am__v_CCLD_1 =
  223. SOURCES = $(libpam_la_SOURCES)
  224. DIST_SOURCES = $(libpam_la_SOURCES)
  225. am__can_run_installinfo = \
  226. case $$AM_UPDATE_INFO_DIR in \
  227. n|no|NO) false;; \
  228. *) (install-info --version) >/dev/null 2>&1;; \
  229. esac
  230. DATA = $(pkgconfig_DATA)
  231. HEADERS = $(include_HEADERS) $(noinst_HEADERS)
  232. am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
  233. # Read a list of newline-separated strings from the standard input,
  234. # and print each of them once, without duplicates. Input order is
  235. # *not* preserved.
  236. am__uniquify_input = $(AWK) '\
  237. BEGIN { nonempty = 0; } \
  238. { items[$$0] = 1; nonempty = 1; } \
  239. END { if (nonempty) { for (i in items) print i; }; } \
  240. '
  241. # Make sure the list of sources is unique. This is necessary because,
  242. # e.g., the same source file might be shared among _SOURCES variables
  243. # for different programs/libraries.
  244. am__define_uniq_tagged_files = \
  245. list='$(am__tagged_files)'; \
  246. unique=`for i in $$list; do \
  247. if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  248. done | $(am__uniquify_input)`
  249. ETAGS = etags
  250. CTAGS = ctags
  251. am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/pam.pc.in \
  252. $(top_srcdir)/build-aux/depcomp
  253. DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
  254. 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
  255. AMTAR = $${TAR-tar}
  256. AM_DEFAULT_VERBOSITY = 1
  257. 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
  258. AUTOCONF = ${SHELL} '/opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/linux-pam-1.5.2/build-aux/missing' autoconf
  259. AUTOHEADER = ${SHELL} '/opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/linux-pam-1.5.2/build-aux/missing' autoheader
  260. 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
  261. AWK = gawk
  262. BROWSER =
  263. BUILD_CFLAGS =
  264. BUILD_CPPFLAGS =
  265. BUILD_LDFLAGS =
  266. 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
  267. CCDEPMODE = depmode=gcc3
  268. CC_FOR_BUILD = gcc
  269. CFLAGS = -g -O2
  270. 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
  271. CPPFLAGS =
  272. CRYPTO_LIBS =
  273. CRYPT_CFLAGS =
  274. CRYPT_LIBS = -lcrypt
  275. CYGPATH_W = echo
  276. DEFS = -DHAVE_CONFIG_H
  277. DEPDIR = .deps
  278. DLLTOOL = false
  279. DSYMUTIL =
  280. DUMPBIN = :
  281. ECHO_C =
  282. ECHO_N = -n
  283. ECHO_T =
  284. ECONF_CFLAGS =
  285. ECONF_LIBS =
  286. EGREP = /bin/grep -E
  287. EXEEXT =
  288. EXE_CFLAGS = -fpie
  289. EXE_LDFLAGS = -pie -Wl,-z,now
  290. FGREP = /bin/grep -F
  291. FO2PDF =
  292. GETTEXT_MACRO_VERSION = 0.18
  293. GMSGFMT = /usr/bin/msgfmt
  294. GMSGFMT_015 = /usr/bin/msgfmt
  295. GREP = /bin/grep
  296. INSTALL = /usr/bin/install -c
  297. INSTALL_DATA = ${INSTALL} -m 644
  298. INSTALL_PROGRAM = ${INSTALL}
  299. INSTALL_SCRIPT = ${INSTALL}
  300. INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
  301. INTLLIBS =
  302. INTL_MACOSX_LIBS =
  303. 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
  304. LDFLAGS = -Wl,--as-needed -Wl,--no-undefined -Wl,-O1
  305. LEX = flex
  306. LEXLIB = -lfl
  307. LEX_OUTPUT_ROOT = lex.yy
  308. LIBAUDIT =
  309. LIBCRYPT = -lcrypt
  310. LIBDB =
  311. LIBDL = -ldl
  312. LIBICONV = -liconv
  313. LIBINTL =
  314. LIBOBJS = ${LIBOBJDIR}memcmp$U.o
  315. LIBPRELUDE_CFLAGS =
  316. LIBPRELUDE_CONFIG = no
  317. LIBPRELUDE_CONFIG_PREFIX =
  318. LIBPRELUDE_LDFLAGS =
  319. LIBPRELUDE_LIBS =
  320. LIBPRELUDE_PREFIX =
  321. LIBPRELUDE_PTHREAD_CFLAGS =
  322. LIBS =
  323. LIBSELINUX =
  324. LIBTOOL = $(SHELL) $(top_builddir)/libtool
  325. LIPO =
  326. LN_S = ln -s
  327. LTLIBICONV = -liconv
  328. LTLIBINTL =
  329. LTLIBOBJS = ${LIBOBJDIR}memcmp$U.lo
  330. LT_SYS_LIBRARY_PATH =
  331. MAKEINFO = ${SHELL} '/opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/linux-pam-1.5.2/build-aux/missing' makeinfo
  332. MANIFEST_TOOL = :
  333. MKDIR_P = /bin/mkdir -p
  334. MSGFMT = /usr/bin/msgfmt
  335. MSGFMT_015 = /usr/bin/msgfmt
  336. MSGMERGE = /usr/bin/msgmerge
  337. NIS_CFLAGS =
  338. NIS_LIBS =
  339. NM = nm
  340. NMEDIT =
  341. NSL_CFLAGS =
  342. NSL_LIBS = -lnsl
  343. OBJDUMP = objdump
  344. OBJEXT = o
  345. OTOOL =
  346. OTOOL64 =
  347. PACKAGE = Linux-PAM
  348. PACKAGE_BUGREPORT =
  349. PACKAGE_NAME = Linux-PAM
  350. PACKAGE_STRING = Linux-PAM 1.5.2
  351. PACKAGE_TARNAME = Linux-PAM
  352. PACKAGE_URL =
  353. PACKAGE_VERSION = 1.5.2
  354. PATH_SEPARATOR = :
  355. PKG_CONFIG = /usr/bin/pkg-config
  356. PKG_CONFIG_LIBDIR =
  357. PKG_CONFIG_PATH =
  358. POSUB = po
  359. RANLIB = ranlib
  360. SCONFIGDIR = ${prefix}/etc/security
  361. SECUREDIR = ${exec_prefix}/lib/security
  362. SED = /bin/sed
  363. SET_MAKE =
  364. SHELL = /bin/bash
  365. STRINGPARAM_HMAC =
  366. STRINGPARAM_VENDORDIR = --stringparam vendordir '<vendordir>'
  367. STRIP = strip
  368. TIRPC_CFLAGS =
  369. TIRPC_LIBS =
  370. USE_NLS = yes
  371. VERSION = 1.5.2
  372. 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
  373. XGETTEXT = /usr/bin/xgettext
  374. XGETTEXT_015 = /usr/bin/xgettext
  375. XGETTEXT_EXTRA_OPTIONS =
  376. XMLCATALOG = /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/linux-devkit/sysroots/armv7ahf-neon-linux-gnueabi/usr/bin/xmlcatalog
  377. XMLLINT = /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/linux-devkit/sysroots/armv7ahf-neon-linux-gnueabi/usr/bin/xmllint
  378. XML_CATALOG_FILE = /etc/xml/catalog
  379. XSLTPROC = /usr/bin/xsltproc
  380. YACC = bison -y
  381. YFLAGS =
  382. abs_builddir = /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/linux-pam-1.5.2/libpam
  383. abs_srcdir = /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/linux-pam-1.5.2/libpam
  384. abs_top_builddir = /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/linux-pam-1.5.2
  385. abs_top_srcdir = /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/linux-pam-1.5.2
  386. ac_ct_AR =
  387. ac_ct_CC =
  388. ac_ct_DUMPBIN = link -dump
  389. am__include = include
  390. am__leading_dot = .
  391. am__quote =
  392. am__tar = $${TAR-tar} chof - "$$tardir"
  393. am__untar = $${TAR-tar} xf -
  394. bindir = ${exec_prefix}/bin
  395. build = x86_64-pc-linux-gnu
  396. build_alias =
  397. build_cpu = x86_64
  398. build_os = linux-gnu
  399. build_vendor = pc
  400. builddir = .
  401. datadir = ${datarootdir}
  402. datarootdir = ${prefix}/share
  403. docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
  404. dvidir = ${docdir}
  405. exec_prefix = ${prefix}
  406. host = arm-unknown-linux-gnueabihf
  407. host_alias = arm-linux-gnueabihf
  408. host_cpu = arm
  409. host_os = linux-gnueabihf
  410. host_vendor = unknown
  411. htmldir = ${docdir}
  412. includedir = ${prefix}/include
  413. infodir = ${datarootdir}/info
  414. 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
  415. libdir = ${exec_prefix}/lib
  416. libexecdir = ${exec_prefix}/libexec
  417. localedir = ${datarootdir}/locale
  418. localstatedir = ${prefix}/var
  419. mandir = ${datarootdir}/man
  420. mkdir_p = $(MKDIR_P)
  421. oldincludedir = /usr/include
  422. pam_xauth_path = /usr/bin/xauth
  423. pdfdir = ${docdir}
  424. prefix = /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/linux-pam-1.5.2/release
  425. program_transform_name = s,x,x,
  426. psdir = ${docdir}
  427. sbindir = ${exec_prefix}/sbin
  428. sharedstatedir = ${prefix}/com
  429. srcdir = .
  430. sysconfdir = ${prefix}/etc
  431. systemdunitdir =
  432. target_alias =
  433. top_build_prefix = ../
  434. top_builddir = ..
  435. top_srcdir = ..
  436. AM_CFLAGS = -DDEFAULT_MODULE_PATH=\"$(SECUREDIR)/\" -DLIBPAM_COMPILE \
  437. -I$(srcdir)/include $(LIBPRELUDE_CFLAGS) $(ECONF_CFLAGS) \
  438. -DPAM_VERSION=\"$(VERSION)\" -DSYSCONFDIR=\"$(sysconfdir)\" \
  439. $(WARN_CFLAGS)
  440. CLEANFILES = *~
  441. EXTRA_DIST = libpam.map
  442. include_HEADERS = include/security/_pam_compat.h \
  443. include/security/_pam_macros.h include/security/_pam_types.h \
  444. include/security/pam_appl.h include/security/pam_modules.h \
  445. include/security/pam_ext.h include/security/pam_modutil.h
  446. noinst_HEADERS = pam_prelude.h pam_private.h pam_tokens.h \
  447. pam_modutil_private.h include/pam_cc_compat.h \
  448. include/pam_inline.h include/test_assert.h
  449. libpam_la_LDFLAGS = -no-undefined -version-info 85:1:85 \
  450. $(am__append_1)
  451. libpam_la_LIBADD = $(LIBPRELUDE_LIBS) $(ECONF_LIBS) -ldl
  452. lib_LTLIBRARIES = libpam.la
  453. libpam_la_SOURCES = pam_account.c pam_auth.c pam_data.c pam_delay.c \
  454. pam_dispatch.c pam_end.c pam_env.c pam_get_authtok.c \
  455. pam_handlers.c pam_item.c \
  456. pam_misc.c pam_password.c pam_prelude.c \
  457. pam_session.c pam_start.c pam_strerror.c \
  458. pam_vprompt.c pam_syslog.c pam_dynamic.c pam_audit.c \
  459. pam_modutil_check_user.c \
  460. pam_modutil_cleanup.c pam_modutil_getpwnam.c pam_modutil_ioloop.c \
  461. pam_modutil_getgrgid.c pam_modutil_getpwuid.c pam_modutil_getgrnam.c \
  462. pam_modutil_getspnam.c pam_modutil_getlogin.c pam_modutil_ingroup.c \
  463. pam_modutil_priv.c pam_modutil_sanitize.c pam_modutil_searchkey.c
  464. # Pkg-config script.
  465. pkgconfigdir = $(libdir)/pkgconfig
  466. pkgconfig_DATA = pam.pc
  467. all: all-am
  468. .SUFFIXES:
  469. .SUFFIXES: .c .lo .o .obj
  470. $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
  471. @for dep in $?; do \
  472. case '$(am__configure_deps)' in \
  473. *$$dep*) \
  474. ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
  475. && { if test -f $@; then exit 0; else break; fi; }; \
  476. exit 1;; \
  477. esac; \
  478. done; \
  479. echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu libpam/Makefile'; \
  480. $(am__cd) $(top_srcdir) && \
  481. $(AUTOMAKE) --gnu libpam/Makefile
  482. Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  483. @case '$?' in \
  484. *config.status*) \
  485. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
  486. *) \
  487. echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
  488. cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
  489. esac;
  490. $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
  491. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  492. $(top_srcdir)/configure: $(am__configure_deps)
  493. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  494. $(ACLOCAL_M4): $(am__aclocal_m4_deps)
  495. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  496. $(am__aclocal_m4_deps):
  497. pam.pc: $(top_builddir)/config.status $(srcdir)/pam.pc.in
  498. cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
  499. install-libLTLIBRARIES: $(lib_LTLIBRARIES)
  500. @$(NORMAL_INSTALL)
  501. @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
  502. list2=; for p in $$list; do \
  503. if test -f $$p; then \
  504. list2="$$list2 $$p"; \
  505. else :; fi; \
  506. done; \
  507. test -z "$$list2" || { \
  508. echo " $(MKDIR_P) '$(DESTDIR)$(libdir)'"; \
  509. $(MKDIR_P) "$(DESTDIR)$(libdir)" || exit 1; \
  510. echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \
  511. $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \
  512. }
  513. uninstall-libLTLIBRARIES:
  514. @$(NORMAL_UNINSTALL)
  515. @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
  516. for p in $$list; do \
  517. $(am__strip_dir) \
  518. echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \
  519. $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \
  520. done
  521. clean-libLTLIBRARIES:
  522. -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
  523. @list='$(lib_LTLIBRARIES)'; \
  524. locs=`for p in $$list; do echo $$p; done | \
  525. sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
  526. sort -u`; \
  527. test -z "$$locs" || { \
  528. echo rm -f $${locs}; \
  529. rm -f $${locs}; \
  530. }
  531. libpam.la: $(libpam_la_OBJECTS) $(libpam_la_DEPENDENCIES) $(EXTRA_libpam_la_DEPENDENCIES)
  532. $(AM_V_CCLD)$(libpam_la_LINK) -rpath $(libdir) $(libpam_la_OBJECTS) $(libpam_la_LIBADD) $(LIBS)
  533. mostlyclean-compile:
  534. -rm -f *.$(OBJEXT)
  535. distclean-compile:
  536. -rm -f *.tab.c
  537. include ./$(DEPDIR)/pam_account.Plo # am--include-marker
  538. include ./$(DEPDIR)/pam_audit.Plo # am--include-marker
  539. include ./$(DEPDIR)/pam_auth.Plo # am--include-marker
  540. include ./$(DEPDIR)/pam_data.Plo # am--include-marker
  541. include ./$(DEPDIR)/pam_delay.Plo # am--include-marker
  542. include ./$(DEPDIR)/pam_dispatch.Plo # am--include-marker
  543. include ./$(DEPDIR)/pam_dynamic.Plo # am--include-marker
  544. include ./$(DEPDIR)/pam_end.Plo # am--include-marker
  545. include ./$(DEPDIR)/pam_env.Plo # am--include-marker
  546. include ./$(DEPDIR)/pam_get_authtok.Plo # am--include-marker
  547. include ./$(DEPDIR)/pam_handlers.Plo # am--include-marker
  548. include ./$(DEPDIR)/pam_item.Plo # am--include-marker
  549. include ./$(DEPDIR)/pam_misc.Plo # am--include-marker
  550. include ./$(DEPDIR)/pam_modutil_check_user.Plo # am--include-marker
  551. include ./$(DEPDIR)/pam_modutil_cleanup.Plo # am--include-marker
  552. include ./$(DEPDIR)/pam_modutil_getgrgid.Plo # am--include-marker
  553. include ./$(DEPDIR)/pam_modutil_getgrnam.Plo # am--include-marker
  554. include ./$(DEPDIR)/pam_modutil_getlogin.Plo # am--include-marker
  555. include ./$(DEPDIR)/pam_modutil_getpwnam.Plo # am--include-marker
  556. include ./$(DEPDIR)/pam_modutil_getpwuid.Plo # am--include-marker
  557. include ./$(DEPDIR)/pam_modutil_getspnam.Plo # am--include-marker
  558. include ./$(DEPDIR)/pam_modutil_ingroup.Plo # am--include-marker
  559. include ./$(DEPDIR)/pam_modutil_ioloop.Plo # am--include-marker
  560. include ./$(DEPDIR)/pam_modutil_priv.Plo # am--include-marker
  561. include ./$(DEPDIR)/pam_modutil_sanitize.Plo # am--include-marker
  562. include ./$(DEPDIR)/pam_modutil_searchkey.Plo # am--include-marker
  563. include ./$(DEPDIR)/pam_password.Plo # am--include-marker
  564. include ./$(DEPDIR)/pam_prelude.Plo # am--include-marker
  565. include ./$(DEPDIR)/pam_session.Plo # am--include-marker
  566. include ./$(DEPDIR)/pam_start.Plo # am--include-marker
  567. include ./$(DEPDIR)/pam_strerror.Plo # am--include-marker
  568. include ./$(DEPDIR)/pam_syslog.Plo # am--include-marker
  569. include ./$(DEPDIR)/pam_vprompt.Plo # am--include-marker
  570. $(am__depfiles_remade):
  571. @$(MKDIR_P) $(@D)
  572. @echo '# dummy' >$@-t && $(am__mv) $@-t $@
  573. am--depfiles: $(am__depfiles_remade)
  574. .c.o:
  575. $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
  576. $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
  577. # $(AM_V_CC)source='$<' object='$@' libtool=no \
  578. # DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
  579. # $(AM_V_CC_no)$(COMPILE) -c -o $@ $<
  580. .c.obj:
  581. $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
  582. $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
  583. # $(AM_V_CC)source='$<' object='$@' libtool=no \
  584. # DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
  585. # $(AM_V_CC_no)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
  586. .c.lo:
  587. $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
  588. $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
  589. # $(AM_V_CC)source='$<' object='$@' libtool=yes \
  590. # DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
  591. # $(AM_V_CC_no)$(LTCOMPILE) -c -o $@ $<
  592. mostlyclean-libtool:
  593. -rm -f *.lo
  594. clean-libtool:
  595. -rm -rf .libs _libs
  596. install-pkgconfigDATA: $(pkgconfig_DATA)
  597. @$(NORMAL_INSTALL)
  598. @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
  599. if test -n "$$list"; then \
  600. echo " $(MKDIR_P) '$(DESTDIR)$(pkgconfigdir)'"; \
  601. $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)" || exit 1; \
  602. fi; \
  603. for p in $$list; do \
  604. if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
  605. echo "$$d$$p"; \
  606. done | $(am__base_list) | \
  607. while read files; do \
  608. echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgconfigdir)'"; \
  609. $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgconfigdir)" || exit $$?; \
  610. done
  611. uninstall-pkgconfigDATA:
  612. @$(NORMAL_UNINSTALL)
  613. @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
  614. files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
  615. dir='$(DESTDIR)$(pkgconfigdir)'; $(am__uninstall_files_from_dir)
  616. install-includeHEADERS: $(include_HEADERS)
  617. @$(NORMAL_INSTALL)
  618. @list='$(include_HEADERS)'; test -n "$(includedir)" || list=; \
  619. if test -n "$$list"; then \
  620. echo " $(MKDIR_P) '$(DESTDIR)$(includedir)'"; \
  621. $(MKDIR_P) "$(DESTDIR)$(includedir)" || exit 1; \
  622. fi; \
  623. for p in $$list; do \
  624. if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
  625. echo "$$d$$p"; \
  626. done | $(am__base_list) | \
  627. while read files; do \
  628. echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(includedir)'"; \
  629. $(INSTALL_HEADER) $$files "$(DESTDIR)$(includedir)" || exit $$?; \
  630. done
  631. uninstall-includeHEADERS:
  632. @$(NORMAL_UNINSTALL)
  633. @list='$(include_HEADERS)'; test -n "$(includedir)" || list=; \
  634. files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
  635. dir='$(DESTDIR)$(includedir)'; $(am__uninstall_files_from_dir)
  636. ID: $(am__tagged_files)
  637. $(am__define_uniq_tagged_files); mkid -fID $$unique
  638. tags: tags-am
  639. TAGS: tags
  640. tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  641. set x; \
  642. here=`pwd`; \
  643. $(am__define_uniq_tagged_files); \
  644. shift; \
  645. if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
  646. test -n "$$unique" || unique=$$empty_fix; \
  647. if test $$# -gt 0; then \
  648. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  649. "$$@" $$unique; \
  650. else \
  651. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  652. $$unique; \
  653. fi; \
  654. fi
  655. ctags: ctags-am
  656. CTAGS: ctags
  657. ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  658. $(am__define_uniq_tagged_files); \
  659. test -z "$(CTAGS_ARGS)$$unique" \
  660. || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
  661. $$unique
  662. GTAGS:
  663. here=`$(am__cd) $(top_builddir) && pwd` \
  664. && $(am__cd) $(top_srcdir) \
  665. && gtags -i $(GTAGS_ARGS) "$$here"
  666. cscopelist: cscopelist-am
  667. cscopelist-am: $(am__tagged_files)
  668. list='$(am__tagged_files)'; \
  669. case "$(srcdir)" in \
  670. [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
  671. *) sdir=$(subdir)/$(srcdir) ;; \
  672. esac; \
  673. for i in $$list; do \
  674. if test -f "$$i"; then \
  675. echo "$(subdir)/$$i"; \
  676. else \
  677. echo "$$sdir/$$i"; \
  678. fi; \
  679. done >> $(top_builddir)/cscope.files
  680. distclean-tags:
  681. -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
  682. distdir: $(BUILT_SOURCES)
  683. $(MAKE) $(AM_MAKEFLAGS) distdir-am
  684. distdir-am: $(DISTFILES)
  685. @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  686. topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  687. list='$(DISTFILES)'; \
  688. dist_files=`for file in $$list; do echo $$file; done | \
  689. sed -e "s|^$$srcdirstrip/||;t" \
  690. -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
  691. case $$dist_files in \
  692. */*) $(MKDIR_P) `echo "$$dist_files" | \
  693. sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
  694. sort -u` ;; \
  695. esac; \
  696. for file in $$dist_files; do \
  697. if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
  698. if test -d $$d/$$file; then \
  699. dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
  700. if test -d "$(distdir)/$$file"; then \
  701. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  702. fi; \
  703. if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
  704. cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
  705. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  706. fi; \
  707. cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
  708. else \
  709. test -f "$(distdir)/$$file" \
  710. || cp -p $$d/$$file "$(distdir)/$$file" \
  711. || exit 1; \
  712. fi; \
  713. done
  714. check-am: all-am
  715. check: check-am
  716. all-am: Makefile $(LTLIBRARIES) $(DATA) $(HEADERS)
  717. installdirs:
  718. for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(includedir)"; do \
  719. test -z "$$dir" || $(MKDIR_P) "$$dir"; \
  720. done
  721. install: install-am
  722. install-exec: install-exec-am
  723. install-data: install-data-am
  724. uninstall: uninstall-am
  725. install-am: all-am
  726. @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
  727. installcheck: installcheck-am
  728. install-strip:
  729. if test -z '$(STRIP)'; then \
  730. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  731. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  732. install; \
  733. else \
  734. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  735. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  736. "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
  737. fi
  738. mostlyclean-generic:
  739. clean-generic:
  740. -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
  741. distclean-generic:
  742. -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
  743. -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
  744. maintainer-clean-generic:
  745. @echo "This command is intended for maintainers to use"
  746. @echo "it deletes files that may require special tools to rebuild."
  747. clean: clean-am
  748. clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \
  749. mostlyclean-am
  750. distclean: distclean-am
  751. -rm -f ./$(DEPDIR)/pam_account.Plo
  752. -rm -f ./$(DEPDIR)/pam_audit.Plo
  753. -rm -f ./$(DEPDIR)/pam_auth.Plo
  754. -rm -f ./$(DEPDIR)/pam_data.Plo
  755. -rm -f ./$(DEPDIR)/pam_delay.Plo
  756. -rm -f ./$(DEPDIR)/pam_dispatch.Plo
  757. -rm -f ./$(DEPDIR)/pam_dynamic.Plo
  758. -rm -f ./$(DEPDIR)/pam_end.Plo
  759. -rm -f ./$(DEPDIR)/pam_env.Plo
  760. -rm -f ./$(DEPDIR)/pam_get_authtok.Plo
  761. -rm -f ./$(DEPDIR)/pam_handlers.Plo
  762. -rm -f ./$(DEPDIR)/pam_item.Plo
  763. -rm -f ./$(DEPDIR)/pam_misc.Plo
  764. -rm -f ./$(DEPDIR)/pam_modutil_check_user.Plo
  765. -rm -f ./$(DEPDIR)/pam_modutil_cleanup.Plo
  766. -rm -f ./$(DEPDIR)/pam_modutil_getgrgid.Plo
  767. -rm -f ./$(DEPDIR)/pam_modutil_getgrnam.Plo
  768. -rm -f ./$(DEPDIR)/pam_modutil_getlogin.Plo
  769. -rm -f ./$(DEPDIR)/pam_modutil_getpwnam.Plo
  770. -rm -f ./$(DEPDIR)/pam_modutil_getpwuid.Plo
  771. -rm -f ./$(DEPDIR)/pam_modutil_getspnam.Plo
  772. -rm -f ./$(DEPDIR)/pam_modutil_ingroup.Plo
  773. -rm -f ./$(DEPDIR)/pam_modutil_ioloop.Plo
  774. -rm -f ./$(DEPDIR)/pam_modutil_priv.Plo
  775. -rm -f ./$(DEPDIR)/pam_modutil_sanitize.Plo
  776. -rm -f ./$(DEPDIR)/pam_modutil_searchkey.Plo
  777. -rm -f ./$(DEPDIR)/pam_password.Plo
  778. -rm -f ./$(DEPDIR)/pam_prelude.Plo
  779. -rm -f ./$(DEPDIR)/pam_session.Plo
  780. -rm -f ./$(DEPDIR)/pam_start.Plo
  781. -rm -f ./$(DEPDIR)/pam_strerror.Plo
  782. -rm -f ./$(DEPDIR)/pam_syslog.Plo
  783. -rm -f ./$(DEPDIR)/pam_vprompt.Plo
  784. -rm -f Makefile
  785. distclean-am: clean-am distclean-compile distclean-generic \
  786. distclean-tags
  787. dvi: dvi-am
  788. dvi-am:
  789. html: html-am
  790. html-am:
  791. info: info-am
  792. info-am:
  793. install-data-am: install-includeHEADERS install-pkgconfigDATA
  794. install-dvi: install-dvi-am
  795. install-dvi-am:
  796. install-exec-am: install-libLTLIBRARIES
  797. install-html: install-html-am
  798. install-html-am:
  799. install-info: install-info-am
  800. install-info-am:
  801. install-man:
  802. install-pdf: install-pdf-am
  803. install-pdf-am:
  804. install-ps: install-ps-am
  805. install-ps-am:
  806. installcheck-am:
  807. maintainer-clean: maintainer-clean-am
  808. -rm -f ./$(DEPDIR)/pam_account.Plo
  809. -rm -f ./$(DEPDIR)/pam_audit.Plo
  810. -rm -f ./$(DEPDIR)/pam_auth.Plo
  811. -rm -f ./$(DEPDIR)/pam_data.Plo
  812. -rm -f ./$(DEPDIR)/pam_delay.Plo
  813. -rm -f ./$(DEPDIR)/pam_dispatch.Plo
  814. -rm -f ./$(DEPDIR)/pam_dynamic.Plo
  815. -rm -f ./$(DEPDIR)/pam_end.Plo
  816. -rm -f ./$(DEPDIR)/pam_env.Plo
  817. -rm -f ./$(DEPDIR)/pam_get_authtok.Plo
  818. -rm -f ./$(DEPDIR)/pam_handlers.Plo
  819. -rm -f ./$(DEPDIR)/pam_item.Plo
  820. -rm -f ./$(DEPDIR)/pam_misc.Plo
  821. -rm -f ./$(DEPDIR)/pam_modutil_check_user.Plo
  822. -rm -f ./$(DEPDIR)/pam_modutil_cleanup.Plo
  823. -rm -f ./$(DEPDIR)/pam_modutil_getgrgid.Plo
  824. -rm -f ./$(DEPDIR)/pam_modutil_getgrnam.Plo
  825. -rm -f ./$(DEPDIR)/pam_modutil_getlogin.Plo
  826. -rm -f ./$(DEPDIR)/pam_modutil_getpwnam.Plo
  827. -rm -f ./$(DEPDIR)/pam_modutil_getpwuid.Plo
  828. -rm -f ./$(DEPDIR)/pam_modutil_getspnam.Plo
  829. -rm -f ./$(DEPDIR)/pam_modutil_ingroup.Plo
  830. -rm -f ./$(DEPDIR)/pam_modutil_ioloop.Plo
  831. -rm -f ./$(DEPDIR)/pam_modutil_priv.Plo
  832. -rm -f ./$(DEPDIR)/pam_modutil_sanitize.Plo
  833. -rm -f ./$(DEPDIR)/pam_modutil_searchkey.Plo
  834. -rm -f ./$(DEPDIR)/pam_password.Plo
  835. -rm -f ./$(DEPDIR)/pam_prelude.Plo
  836. -rm -f ./$(DEPDIR)/pam_session.Plo
  837. -rm -f ./$(DEPDIR)/pam_start.Plo
  838. -rm -f ./$(DEPDIR)/pam_strerror.Plo
  839. -rm -f ./$(DEPDIR)/pam_syslog.Plo
  840. -rm -f ./$(DEPDIR)/pam_vprompt.Plo
  841. -rm -f Makefile
  842. maintainer-clean-am: distclean-am maintainer-clean-generic
  843. mostlyclean: mostlyclean-am
  844. mostlyclean-am: mostlyclean-compile mostlyclean-generic \
  845. mostlyclean-libtool
  846. pdf: pdf-am
  847. pdf-am:
  848. ps: ps-am
  849. ps-am:
  850. uninstall-am: uninstall-includeHEADERS uninstall-libLTLIBRARIES \
  851. uninstall-pkgconfigDATA
  852. .MAKE: install-am install-strip
  853. .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
  854. clean-generic clean-libLTLIBRARIES clean-libtool cscopelist-am \
  855. ctags ctags-am distclean distclean-compile distclean-generic \
  856. distclean-libtool distclean-tags distdir dvi dvi-am html \
  857. html-am info info-am install install-am install-data \
  858. install-data-am install-dvi install-dvi-am install-exec \
  859. install-exec-am install-html install-html-am \
  860. install-includeHEADERS install-info install-info-am \
  861. install-libLTLIBRARIES install-man install-pdf install-pdf-am \
  862. install-pkgconfigDATA install-ps install-ps-am install-strip \
  863. installcheck installcheck-am installdirs maintainer-clean \
  864. maintainer-clean-generic mostlyclean mostlyclean-compile \
  865. mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
  866. tags tags-am uninstall uninstall-am uninstall-includeHEADERS \
  867. uninstall-libLTLIBRARIES uninstall-pkgconfigDATA
  868. .PRECIOUS: Makefile
  869. # Tell versions [3.59,3.63) of GNU make to not export all variables.
  870. # Otherwise a system limit (for SysV at least) may be exceeded.
  871. .NOEXPORT: