Makefile.in 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904
  1. # Makefile.in generated by automake 1.16.5 from Makefile.am.
  2. # @configure_input@
  3. # Copyright (C) 1994-2021 Free Software Foundation, Inc.
  4. # This Makefile.in is free software; the Free Software Foundation
  5. # gives unlimited permission to copy and/or distribute it,
  6. # with or without modifications, as long as this notice is preserved.
  7. # This program is distributed in the hope that it will be useful,
  8. # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
  9. # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
  10. # PARTICULAR PURPOSE.
  11. @SET_MAKE@
  12. VPATH = @srcdir@
  13. am__is_gnu_make = { \
  14. if test -z '$(MAKELEVEL)'; then \
  15. false; \
  16. elif test -n '$(MAKE_HOST)'; then \
  17. true; \
  18. elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
  19. true; \
  20. else \
  21. false; \
  22. fi; \
  23. }
  24. am__make_running_with_option = \
  25. case $${target_option-} in \
  26. ?) ;; \
  27. *) echo "am__make_running_with_option: internal error: invalid" \
  28. "target option '$${target_option-}' specified" >&2; \
  29. exit 1;; \
  30. esac; \
  31. has_opt=no; \
  32. sane_makeflags=$$MAKEFLAGS; \
  33. if $(am__is_gnu_make); then \
  34. sane_makeflags=$$MFLAGS; \
  35. else \
  36. case $$MAKEFLAGS in \
  37. *\\[\ \ ]*) \
  38. bs=\\; \
  39. sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
  40. | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
  41. esac; \
  42. fi; \
  43. skip_next=no; \
  44. strip_trailopt () \
  45. { \
  46. flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
  47. }; \
  48. for flg in $$sane_makeflags; do \
  49. test $$skip_next = yes && { skip_next=no; continue; }; \
  50. case $$flg in \
  51. *=*|--*) continue;; \
  52. -*I) strip_trailopt 'I'; skip_next=yes;; \
  53. -*I?*) strip_trailopt 'I';; \
  54. -*O) strip_trailopt 'O'; skip_next=yes;; \
  55. -*O?*) strip_trailopt 'O';; \
  56. -*l) strip_trailopt 'l'; skip_next=yes;; \
  57. -*l?*) strip_trailopt 'l';; \
  58. -[dEDm]) skip_next=yes;; \
  59. -[JT]) skip_next=yes;; \
  60. esac; \
  61. case $$flg in \
  62. *$$target_option*) has_opt=yes; break;; \
  63. esac; \
  64. done; \
  65. test $$has_opt = yes
  66. am__make_dryrun = (target_option=n; $(am__make_running_with_option))
  67. am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
  68. pkgincludedir = $(includedir)/@PACKAGE@
  69. pkglibdir = $(libdir)/@PACKAGE@
  70. pkglibexecdir = $(libexecdir)/@PACKAGE@
  71. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
  72. install_sh_DATA = $(install_sh) -c -m 644
  73. install_sh_PROGRAM = $(install_sh) -c
  74. install_sh_SCRIPT = $(install_sh) -c
  75. INSTALL_HEADER = $(INSTALL_DATA)
  76. transform = $(program_transform_name)
  77. NORMAL_INSTALL = :
  78. PRE_INSTALL = :
  79. POST_INSTALL = :
  80. NORMAL_UNINSTALL = :
  81. PRE_UNINSTALL = :
  82. POST_UNINSTALL = :
  83. build_triplet = @build@
  84. host_triplet = @host@
  85. bin_PROGRAMS = file$(EXEEXT)
  86. subdir = src
  87. ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
  88. am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
  89. $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
  90. $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
  91. $(top_srcdir)/m4/visibility.m4 $(top_srcdir)/acinclude.m4 \
  92. $(top_srcdir)/configure.ac
  93. am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
  94. $(ACLOCAL_M4)
  95. DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
  96. mkinstalldirs = $(install_sh) -d
  97. CONFIG_HEADER = $(top_builddir)/config.h
  98. CONFIG_CLEAN_FILES =
  99. CONFIG_CLEAN_VPATH_FILES =
  100. am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(libdir)" \
  101. "$(DESTDIR)$(includedir)"
  102. PROGRAMS = $(bin_PROGRAMS)
  103. am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
  104. am__vpath_adj = case $$p in \
  105. $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
  106. *) f=$$p;; \
  107. esac;
  108. am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
  109. am__install_max = 40
  110. am__nobase_strip_setup = \
  111. srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
  112. am__nobase_strip = \
  113. for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
  114. am__nobase_list = $(am__nobase_strip_setup); \
  115. for p in $$list; do echo "$$p $$p"; done | \
  116. sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
  117. $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
  118. if (++n[$$2] == $(am__install_max)) \
  119. { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
  120. END { for (dir in files) print dir, files[dir] }'
  121. am__base_list = \
  122. sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
  123. sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
  124. am__uninstall_files_from_dir = { \
  125. test -z "$$files" \
  126. || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
  127. || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
  128. $(am__cd) "$$dir" && rm -f $$files; }; \
  129. }
  130. LTLIBRARIES = $(lib_LTLIBRARIES)
  131. am__DEPENDENCIES_1 =
  132. libmagic_la_DEPENDENCIES = $(LTLIBOBJS) $(am__DEPENDENCIES_1)
  133. am_libmagic_la_OBJECTS = buffer.lo magic.lo apprentice.lo softmagic.lo \
  134. ascmagic.lo encoding.lo compress.lo is_csv.lo is_json.lo \
  135. is_simh.lo is_tar.lo readelf.lo print.lo fsmagic.lo funcs.lo \
  136. apptype.lo der.lo cdf.lo cdf_time.lo readcdf.lo
  137. libmagic_la_OBJECTS = $(am_libmagic_la_OBJECTS)
  138. AM_V_lt = $(am__v_lt_@AM_V@)
  139. am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
  140. am__v_lt_0 = --silent
  141. am__v_lt_1 =
  142. libmagic_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
  143. $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
  144. $(libmagic_la_LDFLAGS) $(LDFLAGS) -o $@
  145. am_file_OBJECTS = file.$(OBJEXT) seccomp.$(OBJEXT)
  146. file_OBJECTS = $(am_file_OBJECTS)
  147. file_DEPENDENCIES = libmagic.la
  148. AM_V_P = $(am__v_P_@AM_V@)
  149. am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
  150. am__v_P_0 = false
  151. am__v_P_1 = :
  152. AM_V_GEN = $(am__v_GEN_@AM_V@)
  153. am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
  154. am__v_GEN_0 = @echo " GEN " $@;
  155. am__v_GEN_1 =
  156. AM_V_at = $(am__v_at_@AM_V@)
  157. am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
  158. am__v_at_0 = @
  159. am__v_at_1 =
  160. DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
  161. depcomp = $(SHELL) $(top_srcdir)/depcomp
  162. am__maybe_remake_depfiles = depfiles
  163. am__depfiles_remade = $(DEPDIR)/asctime_r.Plo $(DEPDIR)/asprintf.Plo \
  164. $(DEPDIR)/ctime_r.Plo $(DEPDIR)/dprintf.Plo \
  165. $(DEPDIR)/fmtcheck.Plo $(DEPDIR)/getline.Plo \
  166. $(DEPDIR)/getopt_long.Plo $(DEPDIR)/gmtime_r.Plo \
  167. $(DEPDIR)/localtime_r.Plo $(DEPDIR)/pread.Plo \
  168. $(DEPDIR)/strcasestr.Plo $(DEPDIR)/strlcat.Plo \
  169. $(DEPDIR)/strlcpy.Plo $(DEPDIR)/vasprintf.Plo \
  170. ./$(DEPDIR)/apprentice.Plo ./$(DEPDIR)/apptype.Plo \
  171. ./$(DEPDIR)/ascmagic.Plo ./$(DEPDIR)/buffer.Plo \
  172. ./$(DEPDIR)/cdf.Plo ./$(DEPDIR)/cdf_time.Plo \
  173. ./$(DEPDIR)/compress.Plo ./$(DEPDIR)/der.Plo \
  174. ./$(DEPDIR)/encoding.Plo ./$(DEPDIR)/file.Po \
  175. ./$(DEPDIR)/fsmagic.Plo ./$(DEPDIR)/funcs.Plo \
  176. ./$(DEPDIR)/is_csv.Plo ./$(DEPDIR)/is_json.Plo \
  177. ./$(DEPDIR)/is_simh.Plo ./$(DEPDIR)/is_tar.Plo \
  178. ./$(DEPDIR)/magic.Plo ./$(DEPDIR)/print.Plo \
  179. ./$(DEPDIR)/readcdf.Plo ./$(DEPDIR)/readelf.Plo \
  180. ./$(DEPDIR)/seccomp.Po ./$(DEPDIR)/softmagic.Plo
  181. am__mv = mv -f
  182. COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
  183. $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
  184. LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
  185. $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
  186. $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
  187. $(AM_CFLAGS) $(CFLAGS)
  188. AM_V_CC = $(am__v_CC_@AM_V@)
  189. am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
  190. am__v_CC_0 = @echo " CC " $@;
  191. am__v_CC_1 =
  192. CCLD = $(CC)
  193. LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
  194. $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
  195. $(AM_LDFLAGS) $(LDFLAGS) -o $@
  196. AM_V_CCLD = $(am__v_CCLD_@AM_V@)
  197. am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
  198. am__v_CCLD_0 = @echo " CCLD " $@;
  199. am__v_CCLD_1 =
  200. SOURCES = $(libmagic_la_SOURCES) $(file_SOURCES)
  201. DIST_SOURCES = $(libmagic_la_SOURCES) $(file_SOURCES)
  202. am__can_run_installinfo = \
  203. case $$AM_UPDATE_INFO_DIR in \
  204. n|no|NO) false;; \
  205. *) (install-info --version) >/dev/null 2>&1;; \
  206. esac
  207. HEADERS = $(nodist_include_HEADERS)
  208. am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
  209. # Read a list of newline-separated strings from the standard input,
  210. # and print each of them once, without duplicates. Input order is
  211. # *not* preserved.
  212. am__uniquify_input = $(AWK) '\
  213. BEGIN { nonempty = 0; } \
  214. { items[$$0] = 1; nonempty = 1; } \
  215. END { if (nonempty) { for (i in items) print i; }; } \
  216. '
  217. # Make sure the list of sources is unique. This is necessary because,
  218. # e.g., the same source file might be shared among _SOURCES variables
  219. # for different programs/libraries.
  220. am__define_uniq_tagged_files = \
  221. list='$(am__tagged_files)'; \
  222. unique=`for i in $$list; do \
  223. if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  224. done | $(am__uniquify_input)`
  225. am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \
  226. asctime_r.c asprintf.c ctime_r.c dprintf.c fmtcheck.c \
  227. getline.c getopt_long.c gmtime_r.c localtime_r.c pread.c \
  228. strcasestr.c strlcat.c strlcpy.c vasprintf.c
  229. DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
  230. pkgdatadir = @pkgdatadir@
  231. ACLOCAL = @ACLOCAL@
  232. AMTAR = @AMTAR@
  233. AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
  234. AR = @AR@
  235. AUTOCONF = @AUTOCONF@
  236. AUTOHEADER = @AUTOHEADER@
  237. AUTOMAKE = @AUTOMAKE@
  238. AWK = @AWK@
  239. CC = @CC@
  240. CCDEPMODE = @CCDEPMODE@
  241. CFLAGS = @CFLAGS@
  242. CFLAG_VISIBILITY = @CFLAG_VISIBILITY@
  243. CPPFLAGS = @CPPFLAGS@
  244. CSCOPE = @CSCOPE@
  245. CTAGS = @CTAGS@
  246. CYGPATH_W = @CYGPATH_W@
  247. DEFS = @DEFS@
  248. DEPDIR = @DEPDIR@
  249. DLLTOOL = @DLLTOOL@
  250. DSYMUTIL = @DSYMUTIL@
  251. DUMPBIN = @DUMPBIN@
  252. ECHO_C = @ECHO_C@
  253. ECHO_N = @ECHO_N@
  254. ECHO_T = @ECHO_T@
  255. EGREP = @EGREP@
  256. ETAGS = @ETAGS@
  257. EXEEXT = @EXEEXT@
  258. FGREP = @FGREP@
  259. GREP = @GREP@
  260. HAVE_VISIBILITY = @HAVE_VISIBILITY@
  261. INSTALL = @INSTALL@
  262. INSTALL_DATA = @INSTALL_DATA@
  263. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  264. INSTALL_SCRIPT = @INSTALL_SCRIPT@
  265. INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
  266. LD = @LD@
  267. LDFLAGS = @LDFLAGS@
  268. LIBOBJS = @LIBOBJS@
  269. LIBS = @LIBS@
  270. LIBTOOL = @LIBTOOL@
  271. LIPO = @LIPO@
  272. LN_S = @LN_S@
  273. LTLIBOBJS = @LTLIBOBJS@
  274. LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
  275. MAKEINFO = @MAKEINFO@
  276. MANIFEST_TOOL = @MANIFEST_TOOL@
  277. MINGW = @MINGW@
  278. MKDIR_P = @MKDIR_P@
  279. NM = @NM@
  280. NMEDIT = @NMEDIT@
  281. OBJDUMP = @OBJDUMP@
  282. OBJEXT = @OBJEXT@
  283. OTOOL = @OTOOL@
  284. OTOOL64 = @OTOOL64@
  285. PACKAGE = @PACKAGE@
  286. PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
  287. PACKAGE_NAME = @PACKAGE_NAME@
  288. PACKAGE_STRING = @PACKAGE_STRING@
  289. PACKAGE_TARNAME = @PACKAGE_TARNAME@
  290. PACKAGE_URL = @PACKAGE_URL@
  291. PACKAGE_VERSION = @PACKAGE_VERSION@
  292. PATH_SEPARATOR = @PATH_SEPARATOR@
  293. RANLIB = @RANLIB@
  294. SED = @SED@
  295. SET_MAKE = @SET_MAKE@
  296. SHELL = @SHELL@
  297. STRIP = @STRIP@
  298. VERSION = @VERSION@
  299. WARNINGS = @WARNINGS@
  300. abs_builddir = @abs_builddir@
  301. abs_srcdir = @abs_srcdir@
  302. abs_top_builddir = @abs_top_builddir@
  303. abs_top_srcdir = @abs_top_srcdir@
  304. ac_ct_AR = @ac_ct_AR@
  305. ac_ct_CC = @ac_ct_CC@
  306. ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
  307. am__include = @am__include@
  308. am__leading_dot = @am__leading_dot@
  309. am__quote = @am__quote@
  310. am__tar = @am__tar@
  311. am__untar = @am__untar@
  312. bindir = @bindir@
  313. build = @build@
  314. build_alias = @build_alias@
  315. build_cpu = @build_cpu@
  316. build_os = @build_os@
  317. build_vendor = @build_vendor@
  318. builddir = @builddir@
  319. datadir = @datadir@
  320. datarootdir = @datarootdir@
  321. docdir = @docdir@
  322. dvidir = @dvidir@
  323. exec_prefix = @exec_prefix@
  324. fsect = @fsect@
  325. host = @host@
  326. host_alias = @host_alias@
  327. host_cpu = @host_cpu@
  328. host_os = @host_os@
  329. host_vendor = @host_vendor@
  330. htmldir = @htmldir@
  331. includedir = @includedir@
  332. infodir = @infodir@
  333. install_sh = @install_sh@
  334. libdir = @libdir@
  335. libexecdir = @libexecdir@
  336. localedir = @localedir@
  337. localstatedir = @localstatedir@
  338. mandir = @mandir@
  339. mkdir_p = @mkdir_p@
  340. oldincludedir = @oldincludedir@
  341. pdfdir = @pdfdir@
  342. prefix = @prefix@
  343. program_transform_name = @program_transform_name@
  344. psdir = @psdir@
  345. runstatedir = @runstatedir@
  346. sbindir = @sbindir@
  347. sharedstatedir = @sharedstatedir@
  348. srcdir = @srcdir@
  349. sysconfdir = @sysconfdir@
  350. target_alias = @target_alias@
  351. top_build_prefix = @top_build_prefix@
  352. top_builddir = @top_builddir@
  353. top_srcdir = @top_srcdir@
  354. MAGIC = $(pkgdatadir)/magic
  355. lib_LTLIBRARIES = libmagic.la
  356. nodist_include_HEADERS = magic.h
  357. AM_CPPFLAGS = -DMAGIC='"$(MAGIC)"'
  358. AM_CFLAGS = $(CFLAG_VISIBILITY) @WARNINGS@
  359. libmagic_la_SOURCES = buffer.c magic.c apprentice.c softmagic.c ascmagic.c \
  360. encoding.c compress.c is_csv.c is_json.c is_simh.c is_tar.c readelf.c \
  361. print.c fsmagic.c funcs.c file.h readelf.h tar.h apptype.c der.c der.h \
  362. file_opts.h elfclass.h mygetopt.h cdf.c cdf_time.c readcdf.c cdf.h
  363. libmagic_la_LDFLAGS = -no-undefined -version-info 1:0:0
  364. @MINGW_FALSE@MINGWLIBS =
  365. @MINGW_TRUE@MINGWLIBS = -lgnurx -lshlwapi
  366. libmagic_la_LIBADD = -lm $(LTLIBOBJS) $(MINGWLIBS)
  367. file_SOURCES = file.c seccomp.c
  368. file_LDADD = libmagic.la -lm
  369. CLEANFILES = magic.h
  370. EXTRA_DIST = magic.h.in cdf.mk BNF memtest.c
  371. HDR = $(top_srcdir)/src/magic.h.in
  372. BUILT_SOURCES = magic.h
  373. all: $(BUILT_SOURCES)
  374. $(MAKE) $(AM_MAKEFLAGS) all-am
  375. .SUFFIXES:
  376. .SUFFIXES: .c .lo .o .obj
  377. $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
  378. @for dep in $?; do \
  379. case '$(am__configure_deps)' in \
  380. *$$dep*) \
  381. ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
  382. && { if test -f $@; then exit 0; else break; fi; }; \
  383. exit 1;; \
  384. esac; \
  385. done; \
  386. echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/Makefile'; \
  387. $(am__cd) $(top_srcdir) && \
  388. $(AUTOMAKE) --foreign src/Makefile
  389. Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  390. @case '$?' in \
  391. *config.status*) \
  392. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
  393. *) \
  394. echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
  395. cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
  396. esac;
  397. $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
  398. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  399. $(top_srcdir)/configure: $(am__configure_deps)
  400. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  401. $(ACLOCAL_M4): $(am__aclocal_m4_deps)
  402. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  403. $(am__aclocal_m4_deps):
  404. install-binPROGRAMS: $(bin_PROGRAMS)
  405. @$(NORMAL_INSTALL)
  406. @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
  407. if test -n "$$list"; then \
  408. echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \
  409. $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \
  410. fi; \
  411. for p in $$list; do echo "$$p $$p"; done | \
  412. sed 's/$(EXEEXT)$$//' | \
  413. while read p p1; do if test -f $$p \
  414. || test -f $$p1 \
  415. ; then echo "$$p"; echo "$$p"; else :; fi; \
  416. done | \
  417. sed -e 'p;s,.*/,,;n;h' \
  418. -e 's|.*|.|' \
  419. -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
  420. sed 'N;N;N;s,\n, ,g' | \
  421. $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
  422. { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
  423. if ($$2 == $$4) files[d] = files[d] " " $$1; \
  424. else { print "f", $$3 "/" $$4, $$1; } } \
  425. END { for (d in files) print "f", d, files[d] }' | \
  426. while read type dir files; do \
  427. if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
  428. test -z "$$files" || { \
  429. echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \
  430. $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \
  431. } \
  432. ; done
  433. uninstall-binPROGRAMS:
  434. @$(NORMAL_UNINSTALL)
  435. @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
  436. files=`for p in $$list; do echo "$$p"; done | \
  437. sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
  438. -e 's/$$/$(EXEEXT)/' \
  439. `; \
  440. test -n "$$list" || exit 0; \
  441. echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \
  442. cd "$(DESTDIR)$(bindir)" && rm -f $$files
  443. clean-binPROGRAMS:
  444. @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \
  445. echo " rm -f" $$list; \
  446. rm -f $$list || exit $$?; \
  447. test -n "$(EXEEXT)" || exit 0; \
  448. list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
  449. echo " rm -f" $$list; \
  450. rm -f $$list
  451. install-libLTLIBRARIES: $(lib_LTLIBRARIES)
  452. @$(NORMAL_INSTALL)
  453. @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
  454. list2=; for p in $$list; do \
  455. if test -f $$p; then \
  456. list2="$$list2 $$p"; \
  457. else :; fi; \
  458. done; \
  459. test -z "$$list2" || { \
  460. echo " $(MKDIR_P) '$(DESTDIR)$(libdir)'"; \
  461. $(MKDIR_P) "$(DESTDIR)$(libdir)" || exit 1; \
  462. echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \
  463. $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \
  464. }
  465. uninstall-libLTLIBRARIES:
  466. @$(NORMAL_UNINSTALL)
  467. @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
  468. for p in $$list; do \
  469. $(am__strip_dir) \
  470. echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \
  471. $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \
  472. done
  473. clean-libLTLIBRARIES:
  474. -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
  475. @list='$(lib_LTLIBRARIES)'; \
  476. locs=`for p in $$list; do echo $$p; done | \
  477. sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
  478. sort -u`; \
  479. test -z "$$locs" || { \
  480. echo rm -f $${locs}; \
  481. rm -f $${locs}; \
  482. }
  483. libmagic.la: $(libmagic_la_OBJECTS) $(libmagic_la_DEPENDENCIES) $(EXTRA_libmagic_la_DEPENDENCIES)
  484. $(AM_V_CCLD)$(libmagic_la_LINK) -rpath $(libdir) $(libmagic_la_OBJECTS) $(libmagic_la_LIBADD) $(LIBS)
  485. file$(EXEEXT): $(file_OBJECTS) $(file_DEPENDENCIES) $(EXTRA_file_DEPENDENCIES)
  486. @rm -f file$(EXEEXT)
  487. $(AM_V_CCLD)$(LINK) $(file_OBJECTS) $(file_LDADD) $(LIBS)
  488. mostlyclean-compile:
  489. -rm -f *.$(OBJEXT)
  490. distclean-compile:
  491. -rm -f *.tab.c
  492. @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/asctime_r.Plo@am__quote@ # am--include-marker
  493. @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/asprintf.Plo@am__quote@ # am--include-marker
  494. @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/ctime_r.Plo@am__quote@ # am--include-marker
  495. @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/dprintf.Plo@am__quote@ # am--include-marker
  496. @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/fmtcheck.Plo@am__quote@ # am--include-marker
  497. @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/getline.Plo@am__quote@ # am--include-marker
  498. @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/getopt_long.Plo@am__quote@ # am--include-marker
  499. @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/gmtime_r.Plo@am__quote@ # am--include-marker
  500. @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/localtime_r.Plo@am__quote@ # am--include-marker
  501. @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/pread.Plo@am__quote@ # am--include-marker
  502. @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/strcasestr.Plo@am__quote@ # am--include-marker
  503. @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/strlcat.Plo@am__quote@ # am--include-marker
  504. @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/strlcpy.Plo@am__quote@ # am--include-marker
  505. @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/vasprintf.Plo@am__quote@ # am--include-marker
  506. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/apprentice.Plo@am__quote@ # am--include-marker
  507. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/apptype.Plo@am__quote@ # am--include-marker
  508. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ascmagic.Plo@am__quote@ # am--include-marker
  509. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/buffer.Plo@am__quote@ # am--include-marker
  510. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cdf.Plo@am__quote@ # am--include-marker
  511. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cdf_time.Plo@am__quote@ # am--include-marker
  512. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/compress.Plo@am__quote@ # am--include-marker
  513. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/der.Plo@am__quote@ # am--include-marker
  514. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/encoding.Plo@am__quote@ # am--include-marker
  515. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/file.Po@am__quote@ # am--include-marker
  516. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fsmagic.Plo@am__quote@ # am--include-marker
  517. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/funcs.Plo@am__quote@ # am--include-marker
  518. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/is_csv.Plo@am__quote@ # am--include-marker
  519. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/is_json.Plo@am__quote@ # am--include-marker
  520. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/is_simh.Plo@am__quote@ # am--include-marker
  521. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/is_tar.Plo@am__quote@ # am--include-marker
  522. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/magic.Plo@am__quote@ # am--include-marker
  523. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/print.Plo@am__quote@ # am--include-marker
  524. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/readcdf.Plo@am__quote@ # am--include-marker
  525. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/readelf.Plo@am__quote@ # am--include-marker
  526. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/seccomp.Po@am__quote@ # am--include-marker
  527. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/softmagic.Plo@am__quote@ # am--include-marker
  528. $(am__depfiles_remade):
  529. @$(MKDIR_P) $(@D)
  530. @echo '# dummy' >$@-t && $(am__mv) $@-t $@
  531. am--depfiles: $(am__depfiles_remade)
  532. .c.o:
  533. @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
  534. @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
  535. @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
  536. @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
  537. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  538. @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $<
  539. .c.obj:
  540. @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\
  541. @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\
  542. @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
  543. @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
  544. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  545. @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
  546. .c.lo:
  547. @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\
  548. @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
  549. @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo
  550. @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
  551. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  552. @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<
  553. mostlyclean-libtool:
  554. -rm -f *.lo
  555. clean-libtool:
  556. -rm -rf .libs _libs
  557. install-nodist_includeHEADERS: $(nodist_include_HEADERS)
  558. @$(NORMAL_INSTALL)
  559. @list='$(nodist_include_HEADERS)'; test -n "$(includedir)" || list=; \
  560. if test -n "$$list"; then \
  561. echo " $(MKDIR_P) '$(DESTDIR)$(includedir)'"; \
  562. $(MKDIR_P) "$(DESTDIR)$(includedir)" || exit 1; \
  563. fi; \
  564. for p in $$list; do \
  565. if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
  566. echo "$$d$$p"; \
  567. done | $(am__base_list) | \
  568. while read files; do \
  569. echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(includedir)'"; \
  570. $(INSTALL_HEADER) $$files "$(DESTDIR)$(includedir)" || exit $$?; \
  571. done
  572. uninstall-nodist_includeHEADERS:
  573. @$(NORMAL_UNINSTALL)
  574. @list='$(nodist_include_HEADERS)'; test -n "$(includedir)" || list=; \
  575. files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
  576. dir='$(DESTDIR)$(includedir)'; $(am__uninstall_files_from_dir)
  577. ID: $(am__tagged_files)
  578. $(am__define_uniq_tagged_files); mkid -fID $$unique
  579. tags: tags-am
  580. TAGS: tags
  581. tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  582. set x; \
  583. here=`pwd`; \
  584. $(am__define_uniq_tagged_files); \
  585. shift; \
  586. if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
  587. test -n "$$unique" || unique=$$empty_fix; \
  588. if test $$# -gt 0; then \
  589. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  590. "$$@" $$unique; \
  591. else \
  592. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  593. $$unique; \
  594. fi; \
  595. fi
  596. ctags: ctags-am
  597. CTAGS: ctags
  598. ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  599. $(am__define_uniq_tagged_files); \
  600. test -z "$(CTAGS_ARGS)$$unique" \
  601. || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
  602. $$unique
  603. GTAGS:
  604. here=`$(am__cd) $(top_builddir) && pwd` \
  605. && $(am__cd) $(top_srcdir) \
  606. && gtags -i $(GTAGS_ARGS) "$$here"
  607. cscopelist: cscopelist-am
  608. cscopelist-am: $(am__tagged_files)
  609. list='$(am__tagged_files)'; \
  610. case "$(srcdir)" in \
  611. [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
  612. *) sdir=$(subdir)/$(srcdir) ;; \
  613. esac; \
  614. for i in $$list; do \
  615. if test -f "$$i"; then \
  616. echo "$(subdir)/$$i"; \
  617. else \
  618. echo "$$sdir/$$i"; \
  619. fi; \
  620. done >> $(top_builddir)/cscope.files
  621. distclean-tags:
  622. -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
  623. distdir: $(BUILT_SOURCES)
  624. $(MAKE) $(AM_MAKEFLAGS) distdir-am
  625. distdir-am: $(DISTFILES)
  626. @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  627. topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  628. list='$(DISTFILES)'; \
  629. dist_files=`for file in $$list; do echo $$file; done | \
  630. sed -e "s|^$$srcdirstrip/||;t" \
  631. -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
  632. case $$dist_files in \
  633. */*) $(MKDIR_P) `echo "$$dist_files" | \
  634. sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
  635. sort -u` ;; \
  636. esac; \
  637. for file in $$dist_files; do \
  638. if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
  639. if test -d $$d/$$file; then \
  640. dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
  641. if test -d "$(distdir)/$$file"; then \
  642. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  643. fi; \
  644. if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
  645. cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
  646. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  647. fi; \
  648. cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
  649. else \
  650. test -f "$(distdir)/$$file" \
  651. || cp -p $$d/$$file "$(distdir)/$$file" \
  652. || exit 1; \
  653. fi; \
  654. done
  655. check-am: all-am
  656. check: $(BUILT_SOURCES)
  657. $(MAKE) $(AM_MAKEFLAGS) check-am
  658. all-am: Makefile $(PROGRAMS) $(LTLIBRARIES) $(HEADERS)
  659. install-binPROGRAMS: install-libLTLIBRARIES
  660. installdirs:
  661. for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(libdir)" "$(DESTDIR)$(includedir)"; do \
  662. test -z "$$dir" || $(MKDIR_P) "$$dir"; \
  663. done
  664. install: $(BUILT_SOURCES)
  665. $(MAKE) $(AM_MAKEFLAGS) install-am
  666. install-exec: $(BUILT_SOURCES)
  667. $(MAKE) $(AM_MAKEFLAGS) install-exec-am
  668. install-data: install-data-am
  669. uninstall: uninstall-am
  670. install-am: all-am
  671. @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
  672. installcheck: installcheck-am
  673. install-strip:
  674. if test -z '$(STRIP)'; then \
  675. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  676. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  677. install; \
  678. else \
  679. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  680. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  681. "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
  682. fi
  683. mostlyclean-generic:
  684. clean-generic:
  685. -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
  686. distclean-generic:
  687. -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
  688. -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
  689. maintainer-clean-generic:
  690. @echo "This command is intended for maintainers to use"
  691. @echo "it deletes files that may require special tools to rebuild."
  692. -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
  693. clean: clean-am
  694. clean-am: clean-binPROGRAMS clean-generic clean-libLTLIBRARIES \
  695. clean-libtool mostlyclean-am
  696. distclean: distclean-am
  697. -rm -f $(DEPDIR)/asctime_r.Plo
  698. -rm -f $(DEPDIR)/asprintf.Plo
  699. -rm -f $(DEPDIR)/ctime_r.Plo
  700. -rm -f $(DEPDIR)/dprintf.Plo
  701. -rm -f $(DEPDIR)/fmtcheck.Plo
  702. -rm -f $(DEPDIR)/getline.Plo
  703. -rm -f $(DEPDIR)/getopt_long.Plo
  704. -rm -f $(DEPDIR)/gmtime_r.Plo
  705. -rm -f $(DEPDIR)/localtime_r.Plo
  706. -rm -f $(DEPDIR)/pread.Plo
  707. -rm -f $(DEPDIR)/strcasestr.Plo
  708. -rm -f $(DEPDIR)/strlcat.Plo
  709. -rm -f $(DEPDIR)/strlcpy.Plo
  710. -rm -f $(DEPDIR)/vasprintf.Plo
  711. -rm -f ./$(DEPDIR)/apprentice.Plo
  712. -rm -f ./$(DEPDIR)/apptype.Plo
  713. -rm -f ./$(DEPDIR)/ascmagic.Plo
  714. -rm -f ./$(DEPDIR)/buffer.Plo
  715. -rm -f ./$(DEPDIR)/cdf.Plo
  716. -rm -f ./$(DEPDIR)/cdf_time.Plo
  717. -rm -f ./$(DEPDIR)/compress.Plo
  718. -rm -f ./$(DEPDIR)/der.Plo
  719. -rm -f ./$(DEPDIR)/encoding.Plo
  720. -rm -f ./$(DEPDIR)/file.Po
  721. -rm -f ./$(DEPDIR)/fsmagic.Plo
  722. -rm -f ./$(DEPDIR)/funcs.Plo
  723. -rm -f ./$(DEPDIR)/is_csv.Plo
  724. -rm -f ./$(DEPDIR)/is_json.Plo
  725. -rm -f ./$(DEPDIR)/is_simh.Plo
  726. -rm -f ./$(DEPDIR)/is_tar.Plo
  727. -rm -f ./$(DEPDIR)/magic.Plo
  728. -rm -f ./$(DEPDIR)/print.Plo
  729. -rm -f ./$(DEPDIR)/readcdf.Plo
  730. -rm -f ./$(DEPDIR)/readelf.Plo
  731. -rm -f ./$(DEPDIR)/seccomp.Po
  732. -rm -f ./$(DEPDIR)/softmagic.Plo
  733. -rm -f Makefile
  734. distclean-am: clean-am distclean-compile distclean-generic \
  735. distclean-tags
  736. dvi: dvi-am
  737. dvi-am:
  738. html: html-am
  739. html-am:
  740. info: info-am
  741. info-am:
  742. install-data-am: install-nodist_includeHEADERS
  743. install-dvi: install-dvi-am
  744. install-dvi-am:
  745. install-exec-am: install-binPROGRAMS install-libLTLIBRARIES
  746. install-html: install-html-am
  747. install-html-am:
  748. install-info: install-info-am
  749. install-info-am:
  750. install-man:
  751. install-pdf: install-pdf-am
  752. install-pdf-am:
  753. install-ps: install-ps-am
  754. install-ps-am:
  755. installcheck-am:
  756. maintainer-clean: maintainer-clean-am
  757. -rm -f $(DEPDIR)/asctime_r.Plo
  758. -rm -f $(DEPDIR)/asprintf.Plo
  759. -rm -f $(DEPDIR)/ctime_r.Plo
  760. -rm -f $(DEPDIR)/dprintf.Plo
  761. -rm -f $(DEPDIR)/fmtcheck.Plo
  762. -rm -f $(DEPDIR)/getline.Plo
  763. -rm -f $(DEPDIR)/getopt_long.Plo
  764. -rm -f $(DEPDIR)/gmtime_r.Plo
  765. -rm -f $(DEPDIR)/localtime_r.Plo
  766. -rm -f $(DEPDIR)/pread.Plo
  767. -rm -f $(DEPDIR)/strcasestr.Plo
  768. -rm -f $(DEPDIR)/strlcat.Plo
  769. -rm -f $(DEPDIR)/strlcpy.Plo
  770. -rm -f $(DEPDIR)/vasprintf.Plo
  771. -rm -f ./$(DEPDIR)/apprentice.Plo
  772. -rm -f ./$(DEPDIR)/apptype.Plo
  773. -rm -f ./$(DEPDIR)/ascmagic.Plo
  774. -rm -f ./$(DEPDIR)/buffer.Plo
  775. -rm -f ./$(DEPDIR)/cdf.Plo
  776. -rm -f ./$(DEPDIR)/cdf_time.Plo
  777. -rm -f ./$(DEPDIR)/compress.Plo
  778. -rm -f ./$(DEPDIR)/der.Plo
  779. -rm -f ./$(DEPDIR)/encoding.Plo
  780. -rm -f ./$(DEPDIR)/file.Po
  781. -rm -f ./$(DEPDIR)/fsmagic.Plo
  782. -rm -f ./$(DEPDIR)/funcs.Plo
  783. -rm -f ./$(DEPDIR)/is_csv.Plo
  784. -rm -f ./$(DEPDIR)/is_json.Plo
  785. -rm -f ./$(DEPDIR)/is_simh.Plo
  786. -rm -f ./$(DEPDIR)/is_tar.Plo
  787. -rm -f ./$(DEPDIR)/magic.Plo
  788. -rm -f ./$(DEPDIR)/print.Plo
  789. -rm -f ./$(DEPDIR)/readcdf.Plo
  790. -rm -f ./$(DEPDIR)/readelf.Plo
  791. -rm -f ./$(DEPDIR)/seccomp.Po
  792. -rm -f ./$(DEPDIR)/softmagic.Plo
  793. -rm -f Makefile
  794. maintainer-clean-am: distclean-am maintainer-clean-generic
  795. mostlyclean: mostlyclean-am
  796. mostlyclean-am: mostlyclean-compile mostlyclean-generic \
  797. mostlyclean-libtool
  798. pdf: pdf-am
  799. pdf-am:
  800. ps: ps-am
  801. ps-am:
  802. uninstall-am: uninstall-binPROGRAMS uninstall-libLTLIBRARIES \
  803. uninstall-nodist_includeHEADERS
  804. .MAKE: all check install install-am install-exec install-strip
  805. .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
  806. clean-binPROGRAMS clean-generic clean-libLTLIBRARIES \
  807. clean-libtool cscopelist-am ctags ctags-am distclean \
  808. distclean-compile distclean-generic distclean-libtool \
  809. distclean-tags distdir dvi dvi-am html html-am info info-am \
  810. install install-am install-binPROGRAMS install-data \
  811. install-data-am install-dvi install-dvi-am install-exec \
  812. install-exec-am install-html install-html-am install-info \
  813. install-info-am install-libLTLIBRARIES install-man \
  814. install-nodist_includeHEADERS install-pdf install-pdf-am \
  815. install-ps install-ps-am install-strip installcheck \
  816. installcheck-am installdirs maintainer-clean \
  817. maintainer-clean-generic mostlyclean mostlyclean-compile \
  818. mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
  819. tags tags-am uninstall uninstall-am uninstall-binPROGRAMS \
  820. uninstall-libLTLIBRARIES uninstall-nodist_includeHEADERS
  821. .PRECIOUS: Makefile
  822. magic.h: ${HDR}
  823. sed -e "s/X.YY/$$(echo @VERSION@ | tr -d .)/" < ${HDR} > $@
  824. # Tell versions [3.59,3.63) of GNU make to not export all variables.
  825. # Otherwise a system limit (for SysV at least) may be exceeded.
  826. .NOEXPORT: