Makefile.in 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905
  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. FILECMD = @FILECMD@
  260. GREP = @GREP@
  261. HAVE_VISIBILITY = @HAVE_VISIBILITY@
  262. INSTALL = @INSTALL@
  263. INSTALL_DATA = @INSTALL_DATA@
  264. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  265. INSTALL_SCRIPT = @INSTALL_SCRIPT@
  266. INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
  267. LD = @LD@
  268. LDFLAGS = @LDFLAGS@
  269. LIBOBJS = @LIBOBJS@
  270. LIBS = @LIBS@
  271. LIBTOOL = @LIBTOOL@
  272. LIPO = @LIPO@
  273. LN_S = @LN_S@
  274. LTLIBOBJS = @LTLIBOBJS@
  275. LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
  276. MAKEINFO = @MAKEINFO@
  277. MANIFEST_TOOL = @MANIFEST_TOOL@
  278. MINGW = @MINGW@
  279. MKDIR_P = @MKDIR_P@
  280. NM = @NM@
  281. NMEDIT = @NMEDIT@
  282. OBJDUMP = @OBJDUMP@
  283. OBJEXT = @OBJEXT@
  284. OTOOL = @OTOOL@
  285. OTOOL64 = @OTOOL64@
  286. PACKAGE = @PACKAGE@
  287. PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
  288. PACKAGE_NAME = @PACKAGE_NAME@
  289. PACKAGE_STRING = @PACKAGE_STRING@
  290. PACKAGE_TARNAME = @PACKAGE_TARNAME@
  291. PACKAGE_URL = @PACKAGE_URL@
  292. PACKAGE_VERSION = @PACKAGE_VERSION@
  293. PATH_SEPARATOR = @PATH_SEPARATOR@
  294. RANLIB = @RANLIB@
  295. SED = @SED@
  296. SET_MAKE = @SET_MAKE@
  297. SHELL = @SHELL@
  298. STRIP = @STRIP@
  299. VERSION = @VERSION@
  300. WARNINGS = @WARNINGS@
  301. abs_builddir = @abs_builddir@
  302. abs_srcdir = @abs_srcdir@
  303. abs_top_builddir = @abs_top_builddir@
  304. abs_top_srcdir = @abs_top_srcdir@
  305. ac_ct_AR = @ac_ct_AR@
  306. ac_ct_CC = @ac_ct_CC@
  307. ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
  308. am__include = @am__include@
  309. am__leading_dot = @am__leading_dot@
  310. am__quote = @am__quote@
  311. am__tar = @am__tar@
  312. am__untar = @am__untar@
  313. bindir = @bindir@
  314. build = @build@
  315. build_alias = @build_alias@
  316. build_cpu = @build_cpu@
  317. build_os = @build_os@
  318. build_vendor = @build_vendor@
  319. builddir = @builddir@
  320. datadir = @datadir@
  321. datarootdir = @datarootdir@
  322. docdir = @docdir@
  323. dvidir = @dvidir@
  324. exec_prefix = @exec_prefix@
  325. fsect = @fsect@
  326. host = @host@
  327. host_alias = @host_alias@
  328. host_cpu = @host_cpu@
  329. host_os = @host_os@
  330. host_vendor = @host_vendor@
  331. htmldir = @htmldir@
  332. includedir = @includedir@
  333. infodir = @infodir@
  334. install_sh = @install_sh@
  335. libdir = @libdir@
  336. libexecdir = @libexecdir@
  337. localedir = @localedir@
  338. localstatedir = @localstatedir@
  339. mandir = @mandir@
  340. mkdir_p = @mkdir_p@
  341. oldincludedir = @oldincludedir@
  342. pdfdir = @pdfdir@
  343. prefix = @prefix@
  344. program_transform_name = @program_transform_name@
  345. psdir = @psdir@
  346. runstatedir = @runstatedir@
  347. sbindir = @sbindir@
  348. sharedstatedir = @sharedstatedir@
  349. srcdir = @srcdir@
  350. sysconfdir = @sysconfdir@
  351. target_alias = @target_alias@
  352. top_build_prefix = @top_build_prefix@
  353. top_builddir = @top_builddir@
  354. top_srcdir = @top_srcdir@
  355. MAGIC = $(pkgdatadir)/magic
  356. lib_LTLIBRARIES = libmagic.la
  357. nodist_include_HEADERS = magic.h
  358. AM_CPPFLAGS = -DMAGIC='"$(MAGIC)"'
  359. AM_CFLAGS = $(CFLAG_VISIBILITY) @WARNINGS@
  360. libmagic_la_SOURCES = buffer.c magic.c apprentice.c softmagic.c ascmagic.c \
  361. encoding.c compress.c is_csv.c is_json.c is_simh.c is_tar.c readelf.c \
  362. print.c fsmagic.c funcs.c file.h readelf.h tar.h apptype.c der.c der.h \
  363. file_opts.h elfclass.h mygetopt.h cdf.c cdf_time.c readcdf.c cdf.h
  364. libmagic_la_LDFLAGS = -no-undefined -version-info 1:0:0
  365. @MINGW_FALSE@MINGWLIBS =
  366. @MINGW_TRUE@MINGWLIBS = -lgnurx -lshlwapi
  367. libmagic_la_LIBADD = -lm $(LTLIBOBJS) $(MINGWLIBS)
  368. file_SOURCES = file.c seccomp.c
  369. file_LDADD = libmagic.la -lm
  370. CLEANFILES = magic.h
  371. EXTRA_DIST = magic.h.in cdf.mk BNF memtest.c
  372. HDR = $(top_srcdir)/src/magic.h.in
  373. BUILT_SOURCES = magic.h
  374. all: $(BUILT_SOURCES)
  375. $(MAKE) $(AM_MAKEFLAGS) all-am
  376. .SUFFIXES:
  377. .SUFFIXES: .c .lo .o .obj
  378. $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
  379. @for dep in $?; do \
  380. case '$(am__configure_deps)' in \
  381. *$$dep*) \
  382. ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
  383. && { if test -f $@; then exit 0; else break; fi; }; \
  384. exit 1;; \
  385. esac; \
  386. done; \
  387. echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/Makefile'; \
  388. $(am__cd) $(top_srcdir) && \
  389. $(AUTOMAKE) --foreign src/Makefile
  390. Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  391. @case '$?' in \
  392. *config.status*) \
  393. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
  394. *) \
  395. echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
  396. cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
  397. esac;
  398. $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
  399. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  400. $(top_srcdir)/configure: $(am__configure_deps)
  401. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  402. $(ACLOCAL_M4): $(am__aclocal_m4_deps)
  403. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  404. $(am__aclocal_m4_deps):
  405. install-binPROGRAMS: $(bin_PROGRAMS)
  406. @$(NORMAL_INSTALL)
  407. @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
  408. if test -n "$$list"; then \
  409. echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \
  410. $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \
  411. fi; \
  412. for p in $$list; do echo "$$p $$p"; done | \
  413. sed 's/$(EXEEXT)$$//' | \
  414. while read p p1; do if test -f $$p \
  415. || test -f $$p1 \
  416. ; then echo "$$p"; echo "$$p"; else :; fi; \
  417. done | \
  418. sed -e 'p;s,.*/,,;n;h' \
  419. -e 's|.*|.|' \
  420. -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
  421. sed 'N;N;N;s,\n, ,g' | \
  422. $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
  423. { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
  424. if ($$2 == $$4) files[d] = files[d] " " $$1; \
  425. else { print "f", $$3 "/" $$4, $$1; } } \
  426. END { for (d in files) print "f", d, files[d] }' | \
  427. while read type dir files; do \
  428. if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
  429. test -z "$$files" || { \
  430. echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \
  431. $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \
  432. } \
  433. ; done
  434. uninstall-binPROGRAMS:
  435. @$(NORMAL_UNINSTALL)
  436. @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
  437. files=`for p in $$list; do echo "$$p"; done | \
  438. sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
  439. -e 's/$$/$(EXEEXT)/' \
  440. `; \
  441. test -n "$$list" || exit 0; \
  442. echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \
  443. cd "$(DESTDIR)$(bindir)" && rm -f $$files
  444. clean-binPROGRAMS:
  445. @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \
  446. echo " rm -f" $$list; \
  447. rm -f $$list || exit $$?; \
  448. test -n "$(EXEEXT)" || exit 0; \
  449. list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
  450. echo " rm -f" $$list; \
  451. rm -f $$list
  452. install-libLTLIBRARIES: $(lib_LTLIBRARIES)
  453. @$(NORMAL_INSTALL)
  454. @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
  455. list2=; for p in $$list; do \
  456. if test -f $$p; then \
  457. list2="$$list2 $$p"; \
  458. else :; fi; \
  459. done; \
  460. test -z "$$list2" || { \
  461. echo " $(MKDIR_P) '$(DESTDIR)$(libdir)'"; \
  462. $(MKDIR_P) "$(DESTDIR)$(libdir)" || exit 1; \
  463. echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \
  464. $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \
  465. }
  466. uninstall-libLTLIBRARIES:
  467. @$(NORMAL_UNINSTALL)
  468. @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
  469. for p in $$list; do \
  470. $(am__strip_dir) \
  471. echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \
  472. $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \
  473. done
  474. clean-libLTLIBRARIES:
  475. -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
  476. @list='$(lib_LTLIBRARIES)'; \
  477. locs=`for p in $$list; do echo $$p; done | \
  478. sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
  479. sort -u`; \
  480. test -z "$$locs" || { \
  481. echo rm -f $${locs}; \
  482. rm -f $${locs}; \
  483. }
  484. libmagic.la: $(libmagic_la_OBJECTS) $(libmagic_la_DEPENDENCIES) $(EXTRA_libmagic_la_DEPENDENCIES)
  485. $(AM_V_CCLD)$(libmagic_la_LINK) -rpath $(libdir) $(libmagic_la_OBJECTS) $(libmagic_la_LIBADD) $(LIBS)
  486. file$(EXEEXT): $(file_OBJECTS) $(file_DEPENDENCIES) $(EXTRA_file_DEPENDENCIES)
  487. @rm -f file$(EXEEXT)
  488. $(AM_V_CCLD)$(LINK) $(file_OBJECTS) $(file_LDADD) $(LIBS)
  489. mostlyclean-compile:
  490. -rm -f *.$(OBJEXT)
  491. distclean-compile:
  492. -rm -f *.tab.c
  493. @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/asctime_r.Plo@am__quote@ # am--include-marker
  494. @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/asprintf.Plo@am__quote@ # am--include-marker
  495. @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/ctime_r.Plo@am__quote@ # am--include-marker
  496. @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/dprintf.Plo@am__quote@ # am--include-marker
  497. @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/fmtcheck.Plo@am__quote@ # am--include-marker
  498. @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/getline.Plo@am__quote@ # am--include-marker
  499. @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/getopt_long.Plo@am__quote@ # am--include-marker
  500. @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/gmtime_r.Plo@am__quote@ # am--include-marker
  501. @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/localtime_r.Plo@am__quote@ # am--include-marker
  502. @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/pread.Plo@am__quote@ # am--include-marker
  503. @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/strcasestr.Plo@am__quote@ # am--include-marker
  504. @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/strlcat.Plo@am__quote@ # am--include-marker
  505. @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/strlcpy.Plo@am__quote@ # am--include-marker
  506. @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/vasprintf.Plo@am__quote@ # am--include-marker
  507. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/apprentice.Plo@am__quote@ # am--include-marker
  508. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/apptype.Plo@am__quote@ # am--include-marker
  509. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ascmagic.Plo@am__quote@ # am--include-marker
  510. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/buffer.Plo@am__quote@ # am--include-marker
  511. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cdf.Plo@am__quote@ # am--include-marker
  512. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cdf_time.Plo@am__quote@ # am--include-marker
  513. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/compress.Plo@am__quote@ # am--include-marker
  514. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/der.Plo@am__quote@ # am--include-marker
  515. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/encoding.Plo@am__quote@ # am--include-marker
  516. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/file.Po@am__quote@ # am--include-marker
  517. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fsmagic.Plo@am__quote@ # am--include-marker
  518. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/funcs.Plo@am__quote@ # am--include-marker
  519. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/is_csv.Plo@am__quote@ # am--include-marker
  520. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/is_json.Plo@am__quote@ # am--include-marker
  521. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/is_simh.Plo@am__quote@ # am--include-marker
  522. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/is_tar.Plo@am__quote@ # am--include-marker
  523. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/magic.Plo@am__quote@ # am--include-marker
  524. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/print.Plo@am__quote@ # am--include-marker
  525. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/readcdf.Plo@am__quote@ # am--include-marker
  526. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/readelf.Plo@am__quote@ # am--include-marker
  527. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/seccomp.Po@am__quote@ # am--include-marker
  528. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/softmagic.Plo@am__quote@ # am--include-marker
  529. $(am__depfiles_remade):
  530. @$(MKDIR_P) $(@D)
  531. @echo '# dummy' >$@-t && $(am__mv) $@-t $@
  532. am--depfiles: $(am__depfiles_remade)
  533. .c.o:
  534. @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
  535. @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
  536. @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
  537. @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
  538. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  539. @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $<
  540. .c.obj:
  541. @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\
  542. @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\
  543. @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
  544. @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
  545. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  546. @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
  547. .c.lo:
  548. @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\
  549. @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
  550. @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo
  551. @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
  552. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  553. @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<
  554. mostlyclean-libtool:
  555. -rm -f *.lo
  556. clean-libtool:
  557. -rm -rf .libs _libs
  558. install-nodist_includeHEADERS: $(nodist_include_HEADERS)
  559. @$(NORMAL_INSTALL)
  560. @list='$(nodist_include_HEADERS)'; test -n "$(includedir)" || list=; \
  561. if test -n "$$list"; then \
  562. echo " $(MKDIR_P) '$(DESTDIR)$(includedir)'"; \
  563. $(MKDIR_P) "$(DESTDIR)$(includedir)" || exit 1; \
  564. fi; \
  565. for p in $$list; do \
  566. if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
  567. echo "$$d$$p"; \
  568. done | $(am__base_list) | \
  569. while read files; do \
  570. echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(includedir)'"; \
  571. $(INSTALL_HEADER) $$files "$(DESTDIR)$(includedir)" || exit $$?; \
  572. done
  573. uninstall-nodist_includeHEADERS:
  574. @$(NORMAL_UNINSTALL)
  575. @list='$(nodist_include_HEADERS)'; test -n "$(includedir)" || list=; \
  576. files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
  577. dir='$(DESTDIR)$(includedir)'; $(am__uninstall_files_from_dir)
  578. ID: $(am__tagged_files)
  579. $(am__define_uniq_tagged_files); mkid -fID $$unique
  580. tags: tags-am
  581. TAGS: tags
  582. tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  583. set x; \
  584. here=`pwd`; \
  585. $(am__define_uniq_tagged_files); \
  586. shift; \
  587. if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
  588. test -n "$$unique" || unique=$$empty_fix; \
  589. if test $$# -gt 0; then \
  590. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  591. "$$@" $$unique; \
  592. else \
  593. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  594. $$unique; \
  595. fi; \
  596. fi
  597. ctags: ctags-am
  598. CTAGS: ctags
  599. ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  600. $(am__define_uniq_tagged_files); \
  601. test -z "$(CTAGS_ARGS)$$unique" \
  602. || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
  603. $$unique
  604. GTAGS:
  605. here=`$(am__cd) $(top_builddir) && pwd` \
  606. && $(am__cd) $(top_srcdir) \
  607. && gtags -i $(GTAGS_ARGS) "$$here"
  608. cscopelist: cscopelist-am
  609. cscopelist-am: $(am__tagged_files)
  610. list='$(am__tagged_files)'; \
  611. case "$(srcdir)" in \
  612. [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
  613. *) sdir=$(subdir)/$(srcdir) ;; \
  614. esac; \
  615. for i in $$list; do \
  616. if test -f "$$i"; then \
  617. echo "$(subdir)/$$i"; \
  618. else \
  619. echo "$$sdir/$$i"; \
  620. fi; \
  621. done >> $(top_builddir)/cscope.files
  622. distclean-tags:
  623. -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
  624. distdir: $(BUILT_SOURCES)
  625. $(MAKE) $(AM_MAKEFLAGS) distdir-am
  626. distdir-am: $(DISTFILES)
  627. @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  628. topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  629. list='$(DISTFILES)'; \
  630. dist_files=`for file in $$list; do echo $$file; done | \
  631. sed -e "s|^$$srcdirstrip/||;t" \
  632. -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
  633. case $$dist_files in \
  634. */*) $(MKDIR_P) `echo "$$dist_files" | \
  635. sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
  636. sort -u` ;; \
  637. esac; \
  638. for file in $$dist_files; do \
  639. if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
  640. if test -d $$d/$$file; then \
  641. dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
  642. if test -d "$(distdir)/$$file"; then \
  643. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  644. fi; \
  645. if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
  646. cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
  647. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  648. fi; \
  649. cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
  650. else \
  651. test -f "$(distdir)/$$file" \
  652. || cp -p $$d/$$file "$(distdir)/$$file" \
  653. || exit 1; \
  654. fi; \
  655. done
  656. check-am: all-am
  657. check: $(BUILT_SOURCES)
  658. $(MAKE) $(AM_MAKEFLAGS) check-am
  659. all-am: Makefile $(PROGRAMS) $(LTLIBRARIES) $(HEADERS)
  660. install-binPROGRAMS: install-libLTLIBRARIES
  661. installdirs:
  662. for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(libdir)" "$(DESTDIR)$(includedir)"; do \
  663. test -z "$$dir" || $(MKDIR_P) "$$dir"; \
  664. done
  665. install: $(BUILT_SOURCES)
  666. $(MAKE) $(AM_MAKEFLAGS) install-am
  667. install-exec: $(BUILT_SOURCES)
  668. $(MAKE) $(AM_MAKEFLAGS) install-exec-am
  669. install-data: install-data-am
  670. uninstall: uninstall-am
  671. install-am: all-am
  672. @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
  673. installcheck: installcheck-am
  674. install-strip:
  675. if test -z '$(STRIP)'; then \
  676. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  677. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  678. install; \
  679. else \
  680. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  681. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  682. "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
  683. fi
  684. mostlyclean-generic:
  685. clean-generic:
  686. -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
  687. distclean-generic:
  688. -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
  689. -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
  690. maintainer-clean-generic:
  691. @echo "This command is intended for maintainers to use"
  692. @echo "it deletes files that may require special tools to rebuild."
  693. -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
  694. clean: clean-am
  695. clean-am: clean-binPROGRAMS clean-generic clean-libLTLIBRARIES \
  696. clean-libtool mostlyclean-am
  697. distclean: distclean-am
  698. -rm -f $(DEPDIR)/asctime_r.Plo
  699. -rm -f $(DEPDIR)/asprintf.Plo
  700. -rm -f $(DEPDIR)/ctime_r.Plo
  701. -rm -f $(DEPDIR)/dprintf.Plo
  702. -rm -f $(DEPDIR)/fmtcheck.Plo
  703. -rm -f $(DEPDIR)/getline.Plo
  704. -rm -f $(DEPDIR)/getopt_long.Plo
  705. -rm -f $(DEPDIR)/gmtime_r.Plo
  706. -rm -f $(DEPDIR)/localtime_r.Plo
  707. -rm -f $(DEPDIR)/pread.Plo
  708. -rm -f $(DEPDIR)/strcasestr.Plo
  709. -rm -f $(DEPDIR)/strlcat.Plo
  710. -rm -f $(DEPDIR)/strlcpy.Plo
  711. -rm -f $(DEPDIR)/vasprintf.Plo
  712. -rm -f ./$(DEPDIR)/apprentice.Plo
  713. -rm -f ./$(DEPDIR)/apptype.Plo
  714. -rm -f ./$(DEPDIR)/ascmagic.Plo
  715. -rm -f ./$(DEPDIR)/buffer.Plo
  716. -rm -f ./$(DEPDIR)/cdf.Plo
  717. -rm -f ./$(DEPDIR)/cdf_time.Plo
  718. -rm -f ./$(DEPDIR)/compress.Plo
  719. -rm -f ./$(DEPDIR)/der.Plo
  720. -rm -f ./$(DEPDIR)/encoding.Plo
  721. -rm -f ./$(DEPDIR)/file.Po
  722. -rm -f ./$(DEPDIR)/fsmagic.Plo
  723. -rm -f ./$(DEPDIR)/funcs.Plo
  724. -rm -f ./$(DEPDIR)/is_csv.Plo
  725. -rm -f ./$(DEPDIR)/is_json.Plo
  726. -rm -f ./$(DEPDIR)/is_simh.Plo
  727. -rm -f ./$(DEPDIR)/is_tar.Plo
  728. -rm -f ./$(DEPDIR)/magic.Plo
  729. -rm -f ./$(DEPDIR)/print.Plo
  730. -rm -f ./$(DEPDIR)/readcdf.Plo
  731. -rm -f ./$(DEPDIR)/readelf.Plo
  732. -rm -f ./$(DEPDIR)/seccomp.Po
  733. -rm -f ./$(DEPDIR)/softmagic.Plo
  734. -rm -f Makefile
  735. distclean-am: clean-am distclean-compile distclean-generic \
  736. distclean-tags
  737. dvi: dvi-am
  738. dvi-am:
  739. html: html-am
  740. html-am:
  741. info: info-am
  742. info-am:
  743. install-data-am: install-nodist_includeHEADERS
  744. install-dvi: install-dvi-am
  745. install-dvi-am:
  746. install-exec-am: install-binPROGRAMS install-libLTLIBRARIES
  747. install-html: install-html-am
  748. install-html-am:
  749. install-info: install-info-am
  750. install-info-am:
  751. install-man:
  752. install-pdf: install-pdf-am
  753. install-pdf-am:
  754. install-ps: install-ps-am
  755. install-ps-am:
  756. installcheck-am:
  757. maintainer-clean: maintainer-clean-am
  758. -rm -f $(DEPDIR)/asctime_r.Plo
  759. -rm -f $(DEPDIR)/asprintf.Plo
  760. -rm -f $(DEPDIR)/ctime_r.Plo
  761. -rm -f $(DEPDIR)/dprintf.Plo
  762. -rm -f $(DEPDIR)/fmtcheck.Plo
  763. -rm -f $(DEPDIR)/getline.Plo
  764. -rm -f $(DEPDIR)/getopt_long.Plo
  765. -rm -f $(DEPDIR)/gmtime_r.Plo
  766. -rm -f $(DEPDIR)/localtime_r.Plo
  767. -rm -f $(DEPDIR)/pread.Plo
  768. -rm -f $(DEPDIR)/strcasestr.Plo
  769. -rm -f $(DEPDIR)/strlcat.Plo
  770. -rm -f $(DEPDIR)/strlcpy.Plo
  771. -rm -f $(DEPDIR)/vasprintf.Plo
  772. -rm -f ./$(DEPDIR)/apprentice.Plo
  773. -rm -f ./$(DEPDIR)/apptype.Plo
  774. -rm -f ./$(DEPDIR)/ascmagic.Plo
  775. -rm -f ./$(DEPDIR)/buffer.Plo
  776. -rm -f ./$(DEPDIR)/cdf.Plo
  777. -rm -f ./$(DEPDIR)/cdf_time.Plo
  778. -rm -f ./$(DEPDIR)/compress.Plo
  779. -rm -f ./$(DEPDIR)/der.Plo
  780. -rm -f ./$(DEPDIR)/encoding.Plo
  781. -rm -f ./$(DEPDIR)/file.Po
  782. -rm -f ./$(DEPDIR)/fsmagic.Plo
  783. -rm -f ./$(DEPDIR)/funcs.Plo
  784. -rm -f ./$(DEPDIR)/is_csv.Plo
  785. -rm -f ./$(DEPDIR)/is_json.Plo
  786. -rm -f ./$(DEPDIR)/is_simh.Plo
  787. -rm -f ./$(DEPDIR)/is_tar.Plo
  788. -rm -f ./$(DEPDIR)/magic.Plo
  789. -rm -f ./$(DEPDIR)/print.Plo
  790. -rm -f ./$(DEPDIR)/readcdf.Plo
  791. -rm -f ./$(DEPDIR)/readelf.Plo
  792. -rm -f ./$(DEPDIR)/seccomp.Po
  793. -rm -f ./$(DEPDIR)/softmagic.Plo
  794. -rm -f Makefile
  795. maintainer-clean-am: distclean-am maintainer-clean-generic
  796. mostlyclean: mostlyclean-am
  797. mostlyclean-am: mostlyclean-compile mostlyclean-generic \
  798. mostlyclean-libtool
  799. pdf: pdf-am
  800. pdf-am:
  801. ps: ps-am
  802. ps-am:
  803. uninstall-am: uninstall-binPROGRAMS uninstall-libLTLIBRARIES \
  804. uninstall-nodist_includeHEADERS
  805. .MAKE: all check install install-am install-exec install-strip
  806. .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
  807. clean-binPROGRAMS clean-generic clean-libLTLIBRARIES \
  808. clean-libtool cscopelist-am ctags ctags-am distclean \
  809. distclean-compile distclean-generic distclean-libtool \
  810. distclean-tags distdir dvi dvi-am html html-am info info-am \
  811. install install-am install-binPROGRAMS install-data \
  812. install-data-am install-dvi install-dvi-am install-exec \
  813. install-exec-am install-html install-html-am install-info \
  814. install-info-am install-libLTLIBRARIES install-man \
  815. install-nodist_includeHEADERS install-pdf install-pdf-am \
  816. install-ps install-ps-am install-strip installcheck \
  817. installcheck-am installdirs maintainer-clean \
  818. maintainer-clean-generic mostlyclean mostlyclean-compile \
  819. mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
  820. tags tags-am uninstall uninstall-am uninstall-binPROGRAMS \
  821. uninstall-libLTLIBRARIES uninstall-nodist_includeHEADERS
  822. .PRECIOUS: Makefile
  823. magic.h: ${HDR}
  824. sed -e "s/X.YY/$$(echo @VERSION@ | tr -d .)/" < ${HDR} > $@
  825. # Tell versions [3.59,3.63) of GNU make to not export all variables.
  826. # Otherwise a system limit (for SysV at least) may be exceeded.
  827. .NOEXPORT: