mirror of
				https://github.com/pbatard/rufus.git
				synced 2024-08-14 23:57:05 +00:00 
			
		
		
		
	[misc] update MinGW build chain for msys2
* Use autoconf and automake 1.14 * reinstate parallel build flags * Also fix MinGW warnings and errors
This commit is contained in:
		
							parent
							
								
									ea28080e0a
								
							
						
					
					
						commit
						e72d6546d1
					
				
					 20 changed files with 2683 additions and 1584 deletions
				
			
		
							
								
								
									
										1
									
								
								.gitignore
									
										
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								.gitignore
									
										
									
									
										vendored
									
									
								
							|  | @ -24,7 +24,6 @@ | ||||||
| x86_32 | x86_32 | ||||||
| x86_64 | x86_64 | ||||||
| autom4te.cache | autom4te.cache | ||||||
| compile |  | ||||||
| config.guess | config.guess | ||||||
| ./config.h | ./config.h | ||||||
| config.log | config.log | ||||||
|  |  | ||||||
|  | @ -8,4 +8,4 @@ release: all | ||||||
| 	@$(STRIP) $(TARGET)$(EXEEXT) | 	@$(STRIP) $(TARGET)$(EXEEXT) | ||||||
| 	@upx --lzma $(TARGET)$(EXEEXT) | 	@upx --lzma $(TARGET)$(EXEEXT) | ||||||
| 	@mv $(TARGET)$(EXEEXT) $(TARGET)-$(VERSION)$(SUFFIX)$(EXEEXT) | 	@mv $(TARGET)$(EXEEXT) $(TARGET)-$(VERSION)$(SUFFIX)$(EXEEXT) | ||||||
| 	@cmd.exe /k _sign.cmd $(TARGET)-$(VERSION)$(SUFFIX)$(EXEEXT) | 	@cmd.exe //c _sign.cmd $(TARGET)-$(VERSION)$(SUFFIX)$(EXEEXT) | ||||||
|  |  | ||||||
							
								
								
									
										285
									
								
								Makefile.in
									
										
									
									
									
								
							
							
						
						
									
										285
									
								
								Makefile.in
									
										
									
									
									
								
							|  | @ -1,9 +1,8 @@ | ||||||
| # Makefile.in generated by automake 1.11.1 from Makefile.am.
 | # Makefile.in generated by automake 1.14.1 from Makefile.am.
 | ||||||
| # @configure_input@
 | # @configure_input@
 | ||||||
| 
 | 
 | ||||||
| # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
 | # Copyright (C) 1994-2013 Free Software Foundation, Inc.
 | ||||||
| # 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
 | 
 | ||||||
| # Inc.
 |  | ||||||
| # This Makefile.in is free software; the Free Software Foundation
 | # This Makefile.in is free software; the Free Software Foundation
 | ||||||
| # gives unlimited permission to copy and/or distribute it,
 | # gives unlimited permission to copy and/or distribute it,
 | ||||||
| # with or without modifications, as long as this notice is preserved.
 | # with or without modifications, as long as this notice is preserved.
 | ||||||
|  | @ -15,6 +14,51 @@ | ||||||
| 
 | 
 | ||||||
| @SET_MAKE@ | @SET_MAKE@ | ||||||
| VPATH = @srcdir@ | VPATH = @srcdir@ | ||||||
|  | am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' | ||||||
|  | am__make_running_with_option = \
 | ||||||
|  |   case $${target_option-} in \
 | ||||||
|  |       ?) ;; \
 | ||||||
|  |       *) echo "am__make_running_with_option: internal error: invalid" \
 | ||||||
|  |               "target option '$${target_option-}' specified" >&2; \
 | ||||||
|  |          exit 1;; \
 | ||||||
|  |   esac; \
 | ||||||
|  |   has_opt=no; \
 | ||||||
|  |   sane_makeflags=$$MAKEFLAGS; \
 | ||||||
|  |   if $(am__is_gnu_make); then \
 | ||||||
|  |     sane_makeflags=$$MFLAGS; \
 | ||||||
|  |   else \
 | ||||||
|  |     case $$MAKEFLAGS in \
 | ||||||
|  |       *\\[\ \	]*) \
 | ||||||
|  |         bs=\\; \
 | ||||||
|  |         sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
 | ||||||
|  |           | sed "s/$$bs$$bs[$$bs $$bs	]*//g"`;; \
 | ||||||
|  |     esac; \
 | ||||||
|  |   fi; \
 | ||||||
|  |   skip_next=no; \
 | ||||||
|  |   strip_trailopt () \
 | ||||||
|  |   { \
 | ||||||
|  |     flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
 | ||||||
|  |   }; \
 | ||||||
|  |   for flg in $$sane_makeflags; do \
 | ||||||
|  |     test $$skip_next = yes && { skip_next=no; continue; }; \
 | ||||||
|  |     case $$flg in \
 | ||||||
|  |       *=*|--*) continue;; \
 | ||||||
|  |         -*I) strip_trailopt 'I'; skip_next=yes;; \
 | ||||||
|  |       -*I?*) strip_trailopt 'I';; \
 | ||||||
|  |         -*O) strip_trailopt 'O'; skip_next=yes;; \
 | ||||||
|  |       -*O?*) strip_trailopt 'O';; \
 | ||||||
|  |         -*l) strip_trailopt 'l'; skip_next=yes;; \
 | ||||||
|  |       -*l?*) strip_trailopt 'l';; \
 | ||||||
|  |       -[dEDm]) skip_next=yes;; \
 | ||||||
|  |       -[JT]) skip_next=yes;; \
 | ||||||
|  |     esac; \
 | ||||||
|  |     case $$flg in \
 | ||||||
|  |       *$$target_option*) has_opt=yes; break;; \
 | ||||||
|  |     esac; \
 | ||||||
|  |   done; \
 | ||||||
|  |   test $$has_opt = yes | ||||||
|  | am__make_dryrun = (target_option=n; $(am__make_running_with_option)) | ||||||
|  | am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) | ||||||
| pkgdatadir = $(datadir)/@PACKAGE@ | pkgdatadir = $(datadir)/@PACKAGE@ | ||||||
| pkgincludedir = $(includedir)/@PACKAGE@ | pkgincludedir = $(includedir)/@PACKAGE@ | ||||||
| pkglibdir = $(libdir)/@PACKAGE@ | pkglibdir = $(libdir)/@PACKAGE@ | ||||||
|  | @ -43,28 +87,62 @@ am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ | ||||||
| mkinstalldirs = $(install_sh) -d | mkinstalldirs = $(install_sh) -d | ||||||
| CONFIG_CLEAN_FILES = | CONFIG_CLEAN_FILES = | ||||||
| CONFIG_CLEAN_VPATH_FILES = | CONFIG_CLEAN_VPATH_FILES = | ||||||
|  | AM_V_P = $(am__v_P_@AM_V@) | ||||||
|  | am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) | ||||||
|  | am__v_P_0 = false | ||||||
|  | am__v_P_1 = : | ||||||
|  | AM_V_GEN = $(am__v_GEN_@AM_V@) | ||||||
|  | am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) | ||||||
|  | am__v_GEN_0 = @echo "  GEN     " $@; | ||||||
|  | am__v_GEN_1 =  | ||||||
|  | AM_V_at = $(am__v_at_@AM_V@) | ||||||
|  | am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) | ||||||
|  | am__v_at_0 = @ | ||||||
|  | am__v_at_1 =  | ||||||
| depcomp = | depcomp = | ||||||
| am__depfiles_maybe = | am__depfiles_maybe = | ||||||
| AM_V_GEN = $(am__v_GEN_$(V)) |  | ||||||
| am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) |  | ||||||
| am__v_GEN_0 = @echo "  GEN   " $@; |  | ||||||
| AM_V_at = $(am__v_at_$(V)) |  | ||||||
| am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) |  | ||||||
| am__v_at_0 = @ |  | ||||||
| SOURCES = | SOURCES = | ||||||
| RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
 | RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
 | ||||||
| 	html-recursive info-recursive install-data-recursive \
 | 	ctags-recursive dvi-recursive html-recursive info-recursive \
 | ||||||
| 	install-dvi-recursive install-exec-recursive \
 | 	install-data-recursive install-dvi-recursive \
 | ||||||
| 	install-html-recursive install-info-recursive \
 | 	install-exec-recursive install-html-recursive \
 | ||||||
| 	install-pdf-recursive install-ps-recursive install-recursive \
 | 	install-info-recursive install-pdf-recursive \
 | ||||||
| 	installcheck-recursive installdirs-recursive pdf-recursive \
 | 	install-ps-recursive install-recursive installcheck-recursive \
 | ||||||
| 	ps-recursive uninstall-recursive | 	installdirs-recursive pdf-recursive ps-recursive \
 | ||||||
|  | 	tags-recursive uninstall-recursive | ||||||
|  | am__can_run_installinfo = \
 | ||||||
|  |   case $$AM_UPDATE_INFO_DIR in \
 | ||||||
|  |     n|no|NO) false;; \
 | ||||||
|  |     *) (install-info --version) >/dev/null 2>&1;; \
 | ||||||
|  |   esac | ||||||
| RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive	\
 | RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive	\
 | ||||||
|   distclean-recursive maintainer-clean-recursive |   distclean-recursive maintainer-clean-recursive | ||||||
| AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
 | am__recursive_targets = \
 | ||||||
| 	$(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS |   $(RECURSIVE_TARGETS) \
 | ||||||
|  |   $(RECURSIVE_CLEAN_TARGETS) \
 | ||||||
|  |   $(am__extra_recursive_targets) | ||||||
|  | AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
 | ||||||
|  | 	cscope | ||||||
|  | am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) | ||||||
|  | # Read a list of newline-separated strings from the standard input,
 | ||||||
|  | # and print each of them once, without duplicates.  Input order is
 | ||||||
|  | # *not* preserved.
 | ||||||
|  | am__uniquify_input = $(AWK) '\
 | ||||||
|  |   BEGIN { nonempty = 0; } \
 | ||||||
|  |   { items[$$0] = 1; nonempty = 1; } \
 | ||||||
|  |   END { if (nonempty) { for (i in items) print i; }; } \
 | ||||||
|  | ' | ||||||
|  | # Make sure the list of sources is unique.  This is necessary because,
 | ||||||
|  | # e.g., the same source file might be shared among _SOURCES variables
 | ||||||
|  | # for different programs/libraries.
 | ||||||
|  | am__define_uniq_tagged_files = \
 | ||||||
|  |   list='$(am__tagged_files)'; \
 | ||||||
|  |   unique=`for i in $$list; do \
 | ||||||
|  |     if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 | ||||||
|  |   done | $(am__uniquify_input)` | ||||||
| ETAGS = etags | ETAGS = etags | ||||||
| CTAGS = ctags | CTAGS = ctags | ||||||
|  | CSCOPE = cscope | ||||||
| DIST_SUBDIRS = $(SUBDIRS) | DIST_SUBDIRS = $(SUBDIRS) | ||||||
| ACLOCAL = @ACLOCAL@ | ACLOCAL = @ACLOCAL@ | ||||||
| AMTAR = @AMTAR@ | AMTAR = @AMTAR@ | ||||||
|  | @ -159,7 +237,7 @@ TARGET = rufus | ||||||
| all: all-recursive | all: all-recursive | ||||||
| 
 | 
 | ||||||
| .SUFFIXES: | .SUFFIXES: | ||||||
| am--refresh: | am--refresh: Makefile | ||||||
| 	@: | 	@: | ||||||
| $(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps) | $(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps) | ||||||
| 	@for dep in $?; do \
 | 	@for dep in $?; do \
 | ||||||
|  | @ -195,22 +273,25 @@ $(ACLOCAL_M4):  $(am__aclocal_m4_deps) | ||||||
| $(am__aclocal_m4_deps): | $(am__aclocal_m4_deps): | ||||||
| 
 | 
 | ||||||
| # This directory's subdirectories are mostly independent; you can cd
 | # This directory's subdirectories are mostly independent; you can cd
 | ||||||
| # into them and run `make' without going through this Makefile.
 | # into them and run 'make' without going through this Makefile.
 | ||||||
| # To change the values of `make' variables: instead of editing Makefiles,
 | # To change the values of 'make' variables: instead of editing Makefiles,
 | ||||||
| # (1) if the variable is set in `config.status', edit `config.status'
 | # (1) if the variable is set in 'config.status', edit 'config.status'
 | ||||||
| #     (which will cause the Makefiles to be regenerated when you run `make');
 | #     (which will cause the Makefiles to be regenerated when you run 'make');
 | ||||||
| # (2) otherwise, pass the desired values on the `make' command line.
 | # (2) otherwise, pass the desired values on the 'make' command line.
 | ||||||
| $(RECURSIVE_TARGETS): | $(am__recursive_targets): | ||||||
| 	@fail= failcom='exit 1'; \
 | 	@fail=; \
 | ||||||
| 	for f in x $$MAKEFLAGS; do \
 | 	if $(am__make_keepgoing); then \
 | ||||||
| 	  case $$f in \
 | 	  failcom='fail=yes'; \
 | ||||||
| 	    *=* | --[!k]*);; \
 | 	else \
 | ||||||
| 	    *k*) failcom='fail=yes';; \
 | 	  failcom='exit 1'; \
 | ||||||
| 	  esac; \
 | 	fi; \
 | ||||||
| 	done; \
 |  | ||||||
| 	dot_seen=no; \
 | 	dot_seen=no; \
 | ||||||
| 	target=`echo $@ | sed s/-recursive//`; \
 | 	target=`echo $@ | sed s/-recursive//`; \
 | ||||||
| 	list='$(SUBDIRS)'; for subdir in $$list; do \
 | 	case "$@" in \
 | ||||||
|  | 	  distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
 | ||||||
|  | 	  *) list='$(SUBDIRS)' ;; \
 | ||||||
|  | 	esac; \
 | ||||||
|  | 	for subdir in $$list; do \
 | ||||||
| 	  echo "Making $$target in $$subdir"; \
 | 	  echo "Making $$target in $$subdir"; \
 | ||||||
| 	  if test "$$subdir" = "."; then \
 | 	  if test "$$subdir" = "."; then \
 | ||||||
| 	    dot_seen=yes; \
 | 	    dot_seen=yes; \
 | ||||||
|  | @ -225,57 +306,12 @@ $(RECURSIVE_TARGETS): | ||||||
| 	  $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
 | 	  $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
 | ||||||
| 	fi; test -z "$$fail" | 	fi; test -z "$$fail" | ||||||
| 
 | 
 | ||||||
| $(RECURSIVE_CLEAN_TARGETS): | ID: $(am__tagged_files) | ||||||
| 	@fail= failcom='exit 1'; \
 | 	$(am__define_uniq_tagged_files); mkid -fID $$unique | ||||||
| 	for f in x $$MAKEFLAGS; do \
 | tags: tags-recursive | ||||||
| 	  case $$f in \
 | TAGS: tags | ||||||
| 	    *=* | --[!k]*);; \
 |  | ||||||
| 	    *k*) failcom='fail=yes';; \
 |  | ||||||
| 	  esac; \
 |  | ||||||
| 	done; \
 |  | ||||||
| 	dot_seen=no; \
 |  | ||||||
| 	case "$@" in \
 |  | ||||||
| 	  distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
 |  | ||||||
| 	  *) list='$(SUBDIRS)' ;; \
 |  | ||||||
| 	esac; \
 |  | ||||||
| 	rev=''; for subdir in $$list; do \
 |  | ||||||
| 	  if test "$$subdir" = "."; then :; else \
 |  | ||||||
| 	    rev="$$subdir $$rev"; \
 |  | ||||||
| 	  fi; \
 |  | ||||||
| 	done; \
 |  | ||||||
| 	rev="$$rev ."; \
 |  | ||||||
| 	target=`echo $@ | sed s/-recursive//`; \
 |  | ||||||
| 	for subdir in $$rev; do \
 |  | ||||||
| 	  echo "Making $$target in $$subdir"; \
 |  | ||||||
| 	  if test "$$subdir" = "."; then \
 |  | ||||||
| 	    local_target="$$target-am"; \
 |  | ||||||
| 	  else \
 |  | ||||||
| 	    local_target="$$target"; \
 |  | ||||||
| 	  fi; \
 |  | ||||||
| 	  ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
 |  | ||||||
| 	  || eval $$failcom; \
 |  | ||||||
| 	done && test -z "$$fail" |  | ||||||
| tags-recursive: |  | ||||||
| 	list='$(SUBDIRS)'; for subdir in $$list; do \
 |  | ||||||
| 	  test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
 |  | ||||||
| 	done |  | ||||||
| ctags-recursive: |  | ||||||
| 	list='$(SUBDIRS)'; for subdir in $$list; do \
 |  | ||||||
| 	  test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
 |  | ||||||
| 	done |  | ||||||
| 
 | 
 | ||||||
| ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) | tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) | ||||||
| 	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
 |  | ||||||
| 	unique=`for i in $$list; do \
 |  | ||||||
| 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 |  | ||||||
| 	  done | \
 |  | ||||||
| 	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
 |  | ||||||
| 	      END { if (nonempty) { for (i in files) print i; }; }'`; \
 |  | ||||||
| 	mkid -fID $$unique |  | ||||||
| tags: TAGS |  | ||||||
| 
 |  | ||||||
| TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \ |  | ||||||
| 		$(TAGS_FILES) $(LISP) |  | ||||||
| 	set x; \
 | 	set x; \
 | ||||||
| 	here=`pwd`; \
 | 	here=`pwd`; \
 | ||||||
| 	if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
 | 	if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
 | ||||||
|  | @ -291,12 +327,7 @@ TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \ | ||||||
| 	      set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
 | 	      set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
 | ||||||
| 	  fi; \
 | 	  fi; \
 | ||||||
| 	done; \
 | 	done; \
 | ||||||
| 	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 | 	$(am__define_uniq_tagged_files); \
 | ||||||
| 	unique=`for i in $$list; do \
 |  | ||||||
| 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 |  | ||||||
| 	  done | \
 |  | ||||||
| 	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
 |  | ||||||
| 	      END { if (nonempty) { for (i in files) print i; }; }'`; \
 |  | ||||||
| 	shift; \
 | 	shift; \
 | ||||||
| 	if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
 | 	if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
 | ||||||
| 	  test -n "$$unique" || unique=$$empty_fix; \
 | 	  test -n "$$unique" || unique=$$empty_fix; \
 | ||||||
|  | @ -308,15 +339,11 @@ TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \ | ||||||
| 	      $$unique; \
 | 	      $$unique; \
 | ||||||
| 	  fi; \
 | 	  fi; \
 | ||||||
| 	fi | 	fi | ||||||
| ctags: CTAGS | ctags: ctags-recursive | ||||||
| CTAGS: ctags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \ | 
 | ||||||
| 		$(TAGS_FILES) $(LISP) | CTAGS: ctags | ||||||
| 	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 | ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) | ||||||
| 	unique=`for i in $$list; do \
 | 	$(am__define_uniq_tagged_files); \
 | ||||||
| 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 |  | ||||||
| 	  done | \
 |  | ||||||
| 	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
 |  | ||||||
| 	      END { if (nonempty) { for (i in files) print i; }; }'`; \
 |  | ||||||
| 	test -z "$(CTAGS_ARGS)$$unique" \
 | 	test -z "$(CTAGS_ARGS)$$unique" \
 | ||||||
| 	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
 | 	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
 | ||||||
| 	     $$unique | 	     $$unique | ||||||
|  | @ -325,9 +352,31 @@ GTAGS: | ||||||
| 	here=`$(am__cd) $(top_builddir) && pwd` \
 | 	here=`$(am__cd) $(top_builddir) && pwd` \
 | ||||||
| 	  && $(am__cd) $(top_srcdir) \
 | 	  && $(am__cd) $(top_srcdir) \
 | ||||||
| 	  && gtags -i $(GTAGS_ARGS) "$$here" | 	  && gtags -i $(GTAGS_ARGS) "$$here" | ||||||
|  | cscope: cscope.files | ||||||
|  | 	test ! -s cscope.files \
 | ||||||
|  | 	  || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS) | ||||||
|  | clean-cscope: | ||||||
|  | 	-rm -f cscope.files | ||||||
|  | cscope.files: clean-cscope cscopelist | ||||||
|  | cscopelist: cscopelist-recursive | ||||||
|  | 
 | ||||||
|  | cscopelist-am: $(am__tagged_files) | ||||||
|  | 	list='$(am__tagged_files)'; \
 | ||||||
|  | 	case "$(srcdir)" in \
 | ||||||
|  | 	  [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
 | ||||||
|  | 	  *) sdir=$(subdir)/$(srcdir) ;; \
 | ||||||
|  | 	esac; \
 | ||||||
|  | 	for i in $$list; do \
 | ||||||
|  | 	  if test -f "$$i"; then \
 | ||||||
|  | 	    echo "$(subdir)/$$i"; \
 | ||||||
|  | 	  else \
 | ||||||
|  | 	    echo "$$sdir/$$i"; \
 | ||||||
|  | 	  fi; \
 | ||||||
|  | 	done >> $(top_builddir)/cscope.files | ||||||
| 
 | 
 | ||||||
| distclean-tags: | distclean-tags: | ||||||
| 	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags | 	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags | ||||||
|  | 	-rm -f cscope.out cscope.in.out cscope.po.out cscope.files | ||||||
| check-am: all-am | check-am: all-am | ||||||
| check: check-recursive | check: check-recursive | ||||||
| all-am: Makefile | all-am: Makefile | ||||||
|  | @ -343,10 +392,15 @@ install-am: all-am | ||||||
| 
 | 
 | ||||||
| installcheck: installcheck-recursive | installcheck: installcheck-recursive | ||||||
| install-strip: | install-strip: | ||||||
|  | 	if test -z '$(STRIP)'; then \
 | ||||||
| 	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 | 	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 | ||||||
| 	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 | 	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 | ||||||
| 	  `test -z '$(STRIP)' || \
 | 	      install; \
 | ||||||
| 	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install | 	else \
 | ||||||
|  | 	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 | ||||||
|  | 	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 | ||||||
|  | 	    "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
 | ||||||
|  | 	fi | ||||||
| mostlyclean-generic: | mostlyclean-generic: | ||||||
| 
 | 
 | ||||||
| clean-generic: | clean-generic: | ||||||
|  | @ -427,21 +481,20 @@ ps-am: | ||||||
| 
 | 
 | ||||||
| uninstall-am: | uninstall-am: | ||||||
| 
 | 
 | ||||||
| .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \ | .MAKE: $(am__recursive_targets) install-am install-strip | ||||||
| 	install-am install-strip tags-recursive |  | ||||||
| 
 | 
 | ||||||
| .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ | .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \ | ||||||
| 	all all-am am--refresh check check-am clean clean-generic \
 | 	am--refresh check check-am clean clean-cscope clean-generic \
 | ||||||
| 	ctags ctags-recursive distclean distclean-generic \
 | 	cscope cscopelist-am ctags ctags-am distclean \
 | ||||||
| 	distclean-tags dvi dvi-am html html-am info info-am install \
 | 	distclean-generic distclean-tags dvi dvi-am html html-am info \
 | ||||||
| 	install-am install-data install-data-am install-dvi \
 | 	info-am install install-am install-data install-data-am \
 | ||||||
| 	install-dvi-am install-exec install-exec-am install-html \
 | 	install-dvi install-dvi-am install-exec install-exec-am \
 | ||||||
| 	install-html-am install-info install-info-am install-man \
 | 	install-html install-html-am install-info install-info-am \
 | ||||||
| 	install-pdf install-pdf-am install-ps install-ps-am \
 | 	install-man install-pdf install-pdf-am install-ps \
 | ||||||
| 	install-strip installcheck installcheck-am installdirs \
 | 	install-ps-am install-strip installcheck installcheck-am \
 | ||||||
| 	installdirs-am maintainer-clean maintainer-clean-generic \
 | 	installdirs installdirs-am maintainer-clean \
 | ||||||
| 	mostlyclean mostlyclean-generic pdf pdf-am ps ps-am tags \
 | 	maintainer-clean-generic mostlyclean mostlyclean-generic pdf \
 | ||||||
| 	tags-recursive uninstall uninstall-am | 	pdf-am ps ps-am tags tags-am uninstall uninstall-am | ||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
| # This step produces the UPX compressed and signed releases that are made available for public download
 | # This step produces the UPX compressed and signed releases that are made available for public download
 | ||||||
|  | @ -451,7 +504,7 @@ release: all | ||||||
| 	@$(STRIP) $(TARGET)$(EXEEXT) | 	@$(STRIP) $(TARGET)$(EXEEXT) | ||||||
| 	@upx --lzma $(TARGET)$(EXEEXT) | 	@upx --lzma $(TARGET)$(EXEEXT) | ||||||
| 	@mv $(TARGET)$(EXEEXT) $(TARGET)-$(VERSION)$(SUFFIX)$(EXEEXT) | 	@mv $(TARGET)$(EXEEXT) $(TARGET)-$(VERSION)$(SUFFIX)$(EXEEXT) | ||||||
| 	@cmd.exe /k _sign.cmd $(TARGET)-$(VERSION)$(SUFFIX)$(EXEEXT) | 	@cmd.exe //c _sign.cmd $(TARGET)-$(VERSION)$(SUFFIX)$(EXEEXT) | ||||||
| 
 | 
 | ||||||
| # Tell versions [3.59,3.63) of GNU make to not export all variables.
 | # Tell versions [3.59,3.63) of GNU make to not export all variables.
 | ||||||
| # Otherwise a system limit (for SysV at least) may be exceeded.
 | # Otherwise a system limit (for SysV at least) may be exceeded.
 | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| #!/bin/sh | #!/bin/sh | ||||||
| rm -f rufus*.exe | rm -f rufus*.exe | ||||||
| ./configure --disable-debug "$@" | ./configure --disable-debug "$@" | ||||||
| make clean | make -j4 clean | ||||||
| make release | make -j4 release | ||||||
|  |  | ||||||
							
								
								
									
										486
									
								
								aclocal.m4
									
										
									
									
										vendored
									
									
								
							
							
						
						
									
										486
									
								
								aclocal.m4
									
										
									
									
										vendored
									
									
								
							|  | @ -1,7 +1,7 @@ | ||||||
| # generated automatically by aclocal 1.11.1 -*- Autoconf -*- | # generated automatically by aclocal 1.14.1 -*- Autoconf -*- | ||||||
|  | 
 | ||||||
|  | # Copyright (C) 1996-2013 Free Software Foundation, Inc. | ||||||
| 
 | 
 | ||||||
| # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, |  | ||||||
| # 2005, 2006, 2007, 2008, 2009  Free Software Foundation, Inc. |  | ||||||
| # This file is free software; the Free Software Foundation | # This file is free software; the Free Software Foundation | ||||||
| # gives unlimited permission to copy and/or distribute it, | # gives unlimited permission to copy and/or distribute it, | ||||||
| # with or without modifications, as long as this notice is preserved. | # with or without modifications, as long as this notice is preserved. | ||||||
|  | @ -11,15 +11,16 @@ | ||||||
| # even the implied warranty of MERCHANTABILITY or FITNESS FOR A | # even the implied warranty of MERCHANTABILITY or FITNESS FOR A | ||||||
| # PARTICULAR PURPOSE. | # PARTICULAR PURPOSE. | ||||||
| 
 | 
 | ||||||
|  | m4_ifndef([AC_CONFIG_MACRO_DIRS], [m4_defun([_AM_CONFIG_MACRO_DIRS], [])m4_defun([AC_CONFIG_MACRO_DIRS], [_AM_CONFIG_MACRO_DIRS($@)])]) | ||||||
| m4_ifndef([AC_AUTOCONF_VERSION], | m4_ifndef([AC_AUTOCONF_VERSION], | ||||||
|   [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl |   [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl | ||||||
| m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.68],, | m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.69],, | ||||||
| [m4_warning([this file was generated for autoconf 2.68. | [m4_warning([this file was generated for autoconf 2.69. | ||||||
| You have another version of autoconf.  It may work, but is not guaranteed to. | You have another version of autoconf.  It may work, but is not guaranteed to. | ||||||
| If you have problems, you may need to regenerate the build system entirely. | If you have problems, you may need to regenerate the build system entirely. | ||||||
| To do so, use the procedure documented by the package, typically `autoreconf'.])]) | To do so, use the procedure documented by the package, typically 'autoreconf'.])]) | ||||||
| 
 | 
 | ||||||
| # Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008  Free Software Foundation, Inc. | # Copyright (C) 2002-2013 Free Software Foundation, Inc. | ||||||
| # | # | ||||||
| # This file is free software; the Free Software Foundation | # This file is free software; the Free Software Foundation | ||||||
| # gives unlimited permission to copy and/or distribute it, | # gives unlimited permission to copy and/or distribute it, | ||||||
|  | @ -31,10 +32,10 @@ To do so, use the procedure documented by the package, typically `autoreconf'.]) | ||||||
| # generated from the m4 files accompanying Automake X.Y. | # generated from the m4 files accompanying Automake X.Y. | ||||||
| # (This private macro should not be called outside this file.) | # (This private macro should not be called outside this file.) | ||||||
| AC_DEFUN([AM_AUTOMAKE_VERSION], | AC_DEFUN([AM_AUTOMAKE_VERSION], | ||||||
| [am__api_version='1.11' | [am__api_version='1.14' | ||||||
| dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to | dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to | ||||||
| dnl require some minimum version.  Point them to the right macro. | dnl require some minimum version.  Point them to the right macro. | ||||||
| m4_if([$1], [1.11.1], [], | m4_if([$1], [1.14.1], [], | ||||||
|       [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl |       [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl | ||||||
| ]) | ]) | ||||||
| 
 | 
 | ||||||
|  | @ -50,22 +51,22 @@ m4_define([_AM_AUTOCONF_VERSION], []) | ||||||
| # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. | # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. | ||||||
| # This function is AC_REQUIREd by AM_INIT_AUTOMAKE. | # This function is AC_REQUIREd by AM_INIT_AUTOMAKE. | ||||||
| AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], | AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], | ||||||
| [AM_AUTOMAKE_VERSION([1.11.1])dnl | [AM_AUTOMAKE_VERSION([1.14.1])dnl | ||||||
| m4_ifndef([AC_AUTOCONF_VERSION], | m4_ifndef([AC_AUTOCONF_VERSION], | ||||||
|   [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl |   [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl | ||||||
| _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) | _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) | ||||||
| 
 | 
 | ||||||
| # AM_AUX_DIR_EXPAND                                         -*- Autoconf -*- | # AM_AUX_DIR_EXPAND                                         -*- Autoconf -*- | ||||||
| 
 | 
 | ||||||
| # Copyright (C) 2001, 2003, 2005  Free Software Foundation, Inc. | # Copyright (C) 2001-2013 Free Software Foundation, Inc. | ||||||
| # | # | ||||||
| # This file is free software; the Free Software Foundation | # This file is free software; the Free Software Foundation | ||||||
| # gives unlimited permission to copy and/or distribute it, | # gives unlimited permission to copy and/or distribute it, | ||||||
| # with or without modifications, as long as this notice is preserved. | # with or without modifications, as long as this notice is preserved. | ||||||
| 
 | 
 | ||||||
| # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets | # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets | ||||||
| # $ac_aux_dir to `$srcdir/foo'.  In other projects, it is set to | # $ac_aux_dir to '$srcdir/foo'.  In other projects, it is set to | ||||||
| # `$srcdir', `$srcdir/..', or `$srcdir/../..'. | # '$srcdir', '$srcdir/..', or '$srcdir/../..'. | ||||||
| # | # | ||||||
| # Of course, Automake must honor this variable whenever it calls a | # Of course, Automake must honor this variable whenever it calls a | ||||||
| # tool from the auxiliary directory.  The problem is that $srcdir (and | # tool from the auxiliary directory.  The problem is that $srcdir (and | ||||||
|  | @ -84,7 +85,7 @@ _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) | ||||||
| # | # | ||||||
| # The reason of the latter failure is that $top_srcdir and $ac_aux_dir | # The reason of the latter failure is that $top_srcdir and $ac_aux_dir | ||||||
| # are both prefixed by $srcdir.  In an in-source build this is usually | # are both prefixed by $srcdir.  In an in-source build this is usually | ||||||
| # harmless because $srcdir is `.', but things will broke when you | # harmless because $srcdir is '.', but things will broke when you | ||||||
| # start a VPATH build or use an absolute $srcdir. | # start a VPATH build or use an absolute $srcdir. | ||||||
| # | # | ||||||
| # So we could use something similar to $top_srcdir/$ac_aux_dir/missing, | # So we could use something similar to $top_srcdir/$ac_aux_dir/missing, | ||||||
|  | @ -110,21 +111,18 @@ am_aux_dir=`cd $ac_aux_dir && pwd` | ||||||
| 
 | 
 | ||||||
| # AM_CONDITIONAL                                            -*- Autoconf -*- | # AM_CONDITIONAL                                            -*- Autoconf -*- | ||||||
| 
 | 
 | ||||||
| # Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008 | # Copyright (C) 1997-2013 Free Software Foundation, Inc. | ||||||
| # Free Software Foundation, Inc. |  | ||||||
| # | # | ||||||
| # This file is free software; the Free Software Foundation | # This file is free software; the Free Software Foundation | ||||||
| # gives unlimited permission to copy and/or distribute it, | # gives unlimited permission to copy and/or distribute it, | ||||||
| # with or without modifications, as long as this notice is preserved. | # with or without modifications, as long as this notice is preserved. | ||||||
| 
 | 
 | ||||||
| # serial 9 |  | ||||||
| 
 |  | ||||||
| # AM_CONDITIONAL(NAME, SHELL-CONDITION) | # AM_CONDITIONAL(NAME, SHELL-CONDITION) | ||||||
| # ------------------------------------- | # ------------------------------------- | ||||||
| # Define a conditional. | # Define a conditional. | ||||||
| AC_DEFUN([AM_CONDITIONAL], | AC_DEFUN([AM_CONDITIONAL], | ||||||
| [AC_PREREQ(2.52)dnl | [AC_PREREQ([2.52])dnl | ||||||
|  ifelse([$1], [TRUE],  [AC_FATAL([$0: invalid condition: $1])], |  m4_if([$1], [TRUE],  [AC_FATAL([$0: invalid condition: $1])], | ||||||
|        [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl |        [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl | ||||||
| AC_SUBST([$1_TRUE])dnl | AC_SUBST([$1_TRUE])dnl | ||||||
| AC_SUBST([$1_FALSE])dnl | AC_SUBST([$1_FALSE])dnl | ||||||
|  | @ -146,18 +144,21 @@ fi])]) | ||||||
| 
 | 
 | ||||||
| # Do all the work for Automake.                             -*- Autoconf -*- | # Do all the work for Automake.                             -*- Autoconf -*- | ||||||
| 
 | 
 | ||||||
| # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, | # Copyright (C) 1996-2013 Free Software Foundation, Inc. | ||||||
| # 2005, 2006, 2008, 2009 Free Software Foundation, Inc. |  | ||||||
| # | # | ||||||
| # This file is free software; the Free Software Foundation | # This file is free software; the Free Software Foundation | ||||||
| # gives unlimited permission to copy and/or distribute it, | # gives unlimited permission to copy and/or distribute it, | ||||||
| # with or without modifications, as long as this notice is preserved. | # with or without modifications, as long as this notice is preserved. | ||||||
| 
 | 
 | ||||||
| # serial 16 |  | ||||||
| 
 |  | ||||||
| # This macro actually does too much.  Some checks are only needed if | # This macro actually does too much.  Some checks are only needed if | ||||||
| # your package does certain things.  But this isn't really a big deal. | # your package does certain things.  But this isn't really a big deal. | ||||||
| 
 | 
 | ||||||
|  | dnl Redefine AC_PROG_CC to automatically invoke _AM_PROG_CC_C_O. | ||||||
|  | m4_define([AC_PROG_CC], | ||||||
|  | m4_defn([AC_PROG_CC]) | ||||||
|  | [_AM_PROG_CC_C_O | ||||||
|  | ]) | ||||||
|  | 
 | ||||||
| # AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) | # AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) | ||||||
| # AM_INIT_AUTOMAKE([OPTIONS]) | # AM_INIT_AUTOMAKE([OPTIONS]) | ||||||
| # ----------------------------------------------- | # ----------------------------------------------- | ||||||
|  | @ -170,7 +171,7 @@ fi])]) | ||||||
| # arguments mandatory, and then we can depend on a new Autoconf | # arguments mandatory, and then we can depend on a new Autoconf | ||||||
| # release and drop the old call support. | # release and drop the old call support. | ||||||
| AC_DEFUN([AM_INIT_AUTOMAKE], | AC_DEFUN([AM_INIT_AUTOMAKE], | ||||||
| [AC_PREREQ([2.62])dnl | [AC_PREREQ([2.65])dnl | ||||||
| dnl Autoconf wants to disallow AM_ names.  We explicitly allow | dnl Autoconf wants to disallow AM_ names.  We explicitly allow | ||||||
| dnl the ones we care about. | dnl the ones we care about. | ||||||
| m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl | m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl | ||||||
|  | @ -199,31 +200,40 @@ AC_SUBST([CYGPATH_W]) | ||||||
| # Define the identity of the package. | # Define the identity of the package. | ||||||
| dnl Distinguish between old-style and new-style calls. | dnl Distinguish between old-style and new-style calls. | ||||||
| m4_ifval([$2], | m4_ifval([$2], | ||||||
| [m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl | [AC_DIAGNOSE([obsolete], | ||||||
|  |              [$0: two- and three-arguments forms are deprecated.]) | ||||||
|  | m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl | ||||||
|  AC_SUBST([PACKAGE], [$1])dnl |  AC_SUBST([PACKAGE], [$1])dnl | ||||||
|  AC_SUBST([VERSION], [$2])], |  AC_SUBST([VERSION], [$2])], | ||||||
| [_AM_SET_OPTIONS([$1])dnl | [_AM_SET_OPTIONS([$1])dnl | ||||||
| dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. | dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. | ||||||
| m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,, | m4_if( | ||||||
|  |   m4_ifdef([AC_PACKAGE_NAME], [ok]):m4_ifdef([AC_PACKAGE_VERSION], [ok]), | ||||||
|  |   [ok:ok],, | ||||||
|   [m4_fatal([AC_INIT should be called with package and version arguments])])dnl |   [m4_fatal([AC_INIT should be called with package and version arguments])])dnl | ||||||
|  AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl |  AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl | ||||||
|  AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl |  AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl | ||||||
| 
 | 
 | ||||||
| _AM_IF_OPTION([no-define],, | _AM_IF_OPTION([no-define],, | ||||||
| [AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package]) | [AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package]) | ||||||
|  AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl |  AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])dnl | ||||||
| 
 | 
 | ||||||
| # Some tools Automake needs. | # Some tools Automake needs. | ||||||
| AC_REQUIRE([AM_SANITY_CHECK])dnl | AC_REQUIRE([AM_SANITY_CHECK])dnl | ||||||
| AC_REQUIRE([AC_ARG_PROGRAM])dnl | AC_REQUIRE([AC_ARG_PROGRAM])dnl | ||||||
| AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version}) | AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}]) | ||||||
| AM_MISSING_PROG(AUTOCONF, autoconf) | AM_MISSING_PROG([AUTOCONF], [autoconf]) | ||||||
| AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version}) | AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}]) | ||||||
| AM_MISSING_PROG(AUTOHEADER, autoheader) | AM_MISSING_PROG([AUTOHEADER], [autoheader]) | ||||||
| AM_MISSING_PROG(MAKEINFO, makeinfo) | AM_MISSING_PROG([MAKEINFO], [makeinfo]) | ||||||
| AC_REQUIRE([AM_PROG_INSTALL_SH])dnl | AC_REQUIRE([AM_PROG_INSTALL_SH])dnl | ||||||
| AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl | AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl | ||||||
| AC_REQUIRE([AM_PROG_MKDIR_P])dnl | AC_REQUIRE([AC_PROG_MKDIR_P])dnl | ||||||
|  | # For better backward compatibility.  To be removed once Automake 1.9.x | ||||||
|  | # dies out for good.  For more background, see: | ||||||
|  | # <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html> | ||||||
|  | # <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html> | ||||||
|  | AC_SUBST([mkdir_p], ['$(MKDIR_P)']) | ||||||
| # We need awk for the "check" target.  The system "awk" is bad on | # We need awk for the "check" target.  The system "awk" is bad on | ||||||
| # some platforms. | # some platforms. | ||||||
| AC_REQUIRE([AC_PROG_AWK])dnl | AC_REQUIRE([AC_PROG_AWK])dnl | ||||||
|  | @ -234,34 +244,78 @@ _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], | ||||||
| 			     [_AM_PROG_TAR([v7])])]) | 			     [_AM_PROG_TAR([v7])])]) | ||||||
| _AM_IF_OPTION([no-dependencies],, | _AM_IF_OPTION([no-dependencies],, | ||||||
| [AC_PROVIDE_IFELSE([AC_PROG_CC], | [AC_PROVIDE_IFELSE([AC_PROG_CC], | ||||||
| 		  [_AM_DEPENDENCIES(CC)], | 		  [_AM_DEPENDENCIES([CC])], | ||||||
| 		  [define([AC_PROG_CC], | 		  [m4_define([AC_PROG_CC], | ||||||
| 			  defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl | 			     m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl | ||||||
| AC_PROVIDE_IFELSE([AC_PROG_CXX], | AC_PROVIDE_IFELSE([AC_PROG_CXX], | ||||||
| 		  [_AM_DEPENDENCIES(CXX)], | 		  [_AM_DEPENDENCIES([CXX])], | ||||||
| 		  [define([AC_PROG_CXX], | 		  [m4_define([AC_PROG_CXX], | ||||||
| 			  defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl | 			     m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl | ||||||
| AC_PROVIDE_IFELSE([AC_PROG_OBJC], | AC_PROVIDE_IFELSE([AC_PROG_OBJC], | ||||||
| 		  [_AM_DEPENDENCIES(OBJC)], | 		  [_AM_DEPENDENCIES([OBJC])], | ||||||
| 		  [define([AC_PROG_OBJC], | 		  [m4_define([AC_PROG_OBJC], | ||||||
| 			  defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl | 			     m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl | ||||||
|  | AC_PROVIDE_IFELSE([AC_PROG_OBJCXX], | ||||||
|  | 		  [_AM_DEPENDENCIES([OBJCXX])], | ||||||
|  | 		  [m4_define([AC_PROG_OBJCXX], | ||||||
|  | 			     m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl | ||||||
| ]) | ]) | ||||||
| _AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl | AC_REQUIRE([AM_SILENT_RULES])dnl | ||||||
| dnl The `parallel-tests' driver may need to know about EXEEXT, so add the | dnl The testsuite driver may need to know about EXEEXT, so add the | ||||||
| dnl `am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen.  This macro | dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen.  This | ||||||
| dnl is hooked onto _AC_COMPILER_EXEEXT early, see below. | dnl macro is hooked onto _AC_COMPILER_EXEEXT early, see below. | ||||||
| AC_CONFIG_COMMANDS_PRE(dnl | AC_CONFIG_COMMANDS_PRE(dnl | ||||||
| [m4_provide_if([_AM_COMPILER_EXEEXT], | [m4_provide_if([_AM_COMPILER_EXEEXT], | ||||||
|   [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl |   [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl | ||||||
| ]) |  | ||||||
| 
 | 
 | ||||||
| dnl Hook into `_AC_COMPILER_EXEEXT' early to learn its expansion.  Do not | # POSIX will say in a future version that running "rm -f" with no argument | ||||||
|  | # is OK; and we want to be able to make that assumption in our Makefile | ||||||
|  | # recipes.  So use an aggressive probe to check that the usage we want is | ||||||
|  | # actually supported "in the wild" to an acceptable degree. | ||||||
|  | # See automake bug#10828. | ||||||
|  | # To make any issue more visible, cause the running configure to be aborted | ||||||
|  | # by default if the 'rm' program in use doesn't match our expectations; the | ||||||
|  | # user can still override this though. | ||||||
|  | if rm -f && rm -fr && rm -rf; then : OK; else | ||||||
|  |   cat >&2 <<'END' | ||||||
|  | Oops! | ||||||
|  | 
 | ||||||
|  | Your 'rm' program seems unable to run without file operands specified | ||||||
|  | on the command line, even when the '-f' option is present.  This is contrary | ||||||
|  | to the behaviour of most rm programs out there, and not conforming with | ||||||
|  | the upcoming POSIX standard: <http://austingroupbugs.net/view.php?id=542> | ||||||
|  | 
 | ||||||
|  | Please tell bug-automake@gnu.org about your system, including the value | ||||||
|  | of your $PATH and any error possibly output before this message.  This | ||||||
|  | can help us improve future automake versions. | ||||||
|  | 
 | ||||||
|  | END | ||||||
|  |   if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then | ||||||
|  |     echo 'Configuration will proceed anyway, since you have set the' >&2 | ||||||
|  |     echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2 | ||||||
|  |     echo >&2 | ||||||
|  |   else | ||||||
|  |     cat >&2 <<'END' | ||||||
|  | Aborting the configuration process, to ensure you take notice of the issue. | ||||||
|  | 
 | ||||||
|  | You can download and install GNU coreutils to get an 'rm' implementation | ||||||
|  | that behaves properly: <http://www.gnu.org/software/coreutils/>. | ||||||
|  | 
 | ||||||
|  | If you want to complete the configuration process using your problematic | ||||||
|  | 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM | ||||||
|  | to "yes", and re-run configure. | ||||||
|  | 
 | ||||||
|  | END | ||||||
|  |     AC_MSG_ERROR([Your 'rm' program is bad, sorry.]) | ||||||
|  |   fi | ||||||
|  | fi]) | ||||||
|  | 
 | ||||||
|  | dnl Hook into '_AC_COMPILER_EXEEXT' early to learn its expansion.  Do not | ||||||
| dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further | dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further | ||||||
| dnl mangled by Autoconf and run in a shell conditional statement. | dnl mangled by Autoconf and run in a shell conditional statement. | ||||||
| m4_define([_AC_COMPILER_EXEEXT], | m4_define([_AC_COMPILER_EXEEXT], | ||||||
| m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])]) | m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])]) | ||||||
| 
 | 
 | ||||||
| 
 |  | ||||||
| # When config.status generates a header, we must update the stamp-h file. | # When config.status generates a header, we must update the stamp-h file. | ||||||
| # This file resides in the same directory as the config header | # This file resides in the same directory as the config header | ||||||
| # that is generated.  The stamp files are numbered to have different names. | # that is generated.  The stamp files are numbered to have different names. | ||||||
|  | @ -283,7 +337,7 @@ for _am_header in $config_headers :; do | ||||||
| done | done | ||||||
| echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) | echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) | ||||||
| 
 | 
 | ||||||
| # Copyright (C) 2001, 2003, 2005, 2008  Free Software Foundation, Inc. | # Copyright (C) 2001-2013 Free Software Foundation, Inc. | ||||||
| # | # | ||||||
| # This file is free software; the Free Software Foundation | # This file is free software; the Free Software Foundation | ||||||
| # gives unlimited permission to copy and/or distribute it, | # gives unlimited permission to copy and/or distribute it, | ||||||
|  | @ -302,16 +356,14 @@ if test x"${install_sh}" != xset; then | ||||||
|     install_sh="\${SHELL} $am_aux_dir/install-sh" |     install_sh="\${SHELL} $am_aux_dir/install-sh" | ||||||
|   esac |   esac | ||||||
| fi | fi | ||||||
| AC_SUBST(install_sh)]) | AC_SUBST([install_sh])]) | ||||||
| 
 | 
 | ||||||
| # Copyright (C) 2003, 2005  Free Software Foundation, Inc. | # Copyright (C) 2003-2013 Free Software Foundation, Inc. | ||||||
| # | # | ||||||
| # This file is free software; the Free Software Foundation | # This file is free software; the Free Software Foundation | ||||||
| # gives unlimited permission to copy and/or distribute it, | # gives unlimited permission to copy and/or distribute it, | ||||||
| # with or without modifications, as long as this notice is preserved. | # with or without modifications, as long as this notice is preserved. | ||||||
| 
 | 
 | ||||||
| # serial 2 |  | ||||||
| 
 |  | ||||||
| # Check whether the underlying file-system supports filenames | # Check whether the underlying file-system supports filenames | ||||||
| # with a leading dot.  For instance MS-DOS doesn't. | # with a leading dot.  For instance MS-DOS doesn't. | ||||||
| AC_DEFUN([AM_SET_LEADING_DOT], | AC_DEFUN([AM_SET_LEADING_DOT], | ||||||
|  | @ -327,15 +379,12 @@ AC_SUBST([am__leading_dot])]) | ||||||
| 
 | 
 | ||||||
| # Fake the existence of programs that GNU maintainers use.  -*- Autoconf -*- | # Fake the existence of programs that GNU maintainers use.  -*- Autoconf -*- | ||||||
| 
 | 
 | ||||||
| # Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005, 2008 | # Copyright (C) 1997-2013 Free Software Foundation, Inc. | ||||||
| # Free Software Foundation, Inc. |  | ||||||
| # | # | ||||||
| # This file is free software; the Free Software Foundation | # This file is free software; the Free Software Foundation | ||||||
| # gives unlimited permission to copy and/or distribute it, | # gives unlimited permission to copy and/or distribute it, | ||||||
| # with or without modifications, as long as this notice is preserved. | # with or without modifications, as long as this notice is preserved. | ||||||
| 
 | 
 | ||||||
| # serial 6 |  | ||||||
| 
 |  | ||||||
| # AM_MISSING_PROG(NAME, PROGRAM) | # AM_MISSING_PROG(NAME, PROGRAM) | ||||||
| # ------------------------------ | # ------------------------------ | ||||||
| AC_DEFUN([AM_MISSING_PROG], | AC_DEFUN([AM_MISSING_PROG], | ||||||
|  | @ -343,11 +392,10 @@ AC_DEFUN([AM_MISSING_PROG], | ||||||
| $1=${$1-"${am_missing_run}$2"} | $1=${$1-"${am_missing_run}$2"} | ||||||
| AC_SUBST($1)]) | AC_SUBST($1)]) | ||||||
| 
 | 
 | ||||||
| 
 |  | ||||||
| # AM_MISSING_HAS_RUN | # AM_MISSING_HAS_RUN | ||||||
| # ------------------ | # ------------------ | ||||||
| # Define MISSING if not defined so far and test if it supports --run. | # Define MISSING if not defined so far and test if it is modern enough. | ||||||
| # If it does, set am_missing_run to use it, otherwise, to nothing. | # If it is, set am_missing_run to use it, otherwise, to nothing. | ||||||
| AC_DEFUN([AM_MISSING_HAS_RUN], | AC_DEFUN([AM_MISSING_HAS_RUN], | ||||||
| [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl | [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl | ||||||
| AC_REQUIRE_AUX_FILE([missing])dnl | AC_REQUIRE_AUX_FILE([missing])dnl | ||||||
|  | @ -360,63 +408,35 @@ if test x"${MISSING+set}" != xset; then | ||||||
|   esac |   esac | ||||||
| fi | fi | ||||||
| # Use eval to expand $SHELL | # Use eval to expand $SHELL | ||||||
| if eval "$MISSING --run true"; then | if eval "$MISSING --is-lightweight"; then | ||||||
|   am_missing_run="$MISSING --run " |   am_missing_run="$MISSING " | ||||||
| else | else | ||||||
|   am_missing_run= |   am_missing_run= | ||||||
|   AC_MSG_WARN([`missing' script is too old or missing]) |   AC_MSG_WARN(['missing' script is too old or missing]) | ||||||
| fi | fi | ||||||
| ]) | ]) | ||||||
| 
 | 
 | ||||||
| # Copyright (C) 2003, 2004, 2005, 2006  Free Software Foundation, Inc. |  | ||||||
| # |  | ||||||
| # This file is free software; the Free Software Foundation |  | ||||||
| # gives unlimited permission to copy and/or distribute it, |  | ||||||
| # with or without modifications, as long as this notice is preserved. |  | ||||||
| 
 |  | ||||||
| # AM_PROG_MKDIR_P |  | ||||||
| # --------------- |  | ||||||
| # Check for `mkdir -p'. |  | ||||||
| AC_DEFUN([AM_PROG_MKDIR_P], |  | ||||||
| [AC_PREREQ([2.60])dnl |  | ||||||
| AC_REQUIRE([AC_PROG_MKDIR_P])dnl |  | ||||||
| dnl Automake 1.8 to 1.9.6 used to define mkdir_p.  We now use MKDIR_P, |  | ||||||
| dnl while keeping a definition of mkdir_p for backward compatibility. |  | ||||||
| dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile. |  | ||||||
| dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of |  | ||||||
| dnl Makefile.ins that do not define MKDIR_P, so we do our own |  | ||||||
| dnl adjustment using top_builddir (which is defined more often than |  | ||||||
| dnl MKDIR_P). |  | ||||||
| AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl |  | ||||||
| case $mkdir_p in |  | ||||||
|   [[\\/$]]* | ?:[[\\/]]*) ;; |  | ||||||
|   */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; |  | ||||||
| esac |  | ||||||
| ]) |  | ||||||
| 
 |  | ||||||
| # Helper functions for option handling.                     -*- Autoconf -*- | # Helper functions for option handling.                     -*- Autoconf -*- | ||||||
| 
 | 
 | ||||||
| # Copyright (C) 2001, 2002, 2003, 2005, 2008  Free Software Foundation, Inc. | # Copyright (C) 2001-2013 Free Software Foundation, Inc. | ||||||
| # | # | ||||||
| # This file is free software; the Free Software Foundation | # This file is free software; the Free Software Foundation | ||||||
| # gives unlimited permission to copy and/or distribute it, | # gives unlimited permission to copy and/or distribute it, | ||||||
| # with or without modifications, as long as this notice is preserved. | # with or without modifications, as long as this notice is preserved. | ||||||
| 
 | 
 | ||||||
| # serial 4 |  | ||||||
| 
 |  | ||||||
| # _AM_MANGLE_OPTION(NAME) | # _AM_MANGLE_OPTION(NAME) | ||||||
| # ----------------------- | # ----------------------- | ||||||
| AC_DEFUN([_AM_MANGLE_OPTION], | AC_DEFUN([_AM_MANGLE_OPTION], | ||||||
| [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) | [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) | ||||||
| 
 | 
 | ||||||
| # _AM_SET_OPTION(NAME) | # _AM_SET_OPTION(NAME) | ||||||
| # ------------------------------ | # -------------------- | ||||||
| # Set option NAME.  Presently that only means defining a flag for this option. | # Set option NAME.  Presently that only means defining a flag for this option. | ||||||
| AC_DEFUN([_AM_SET_OPTION], | AC_DEFUN([_AM_SET_OPTION], | ||||||
| [m4_define(_AM_MANGLE_OPTION([$1]), 1)]) | [m4_define(_AM_MANGLE_OPTION([$1]), [1])]) | ||||||
| 
 | 
 | ||||||
| # _AM_SET_OPTIONS(OPTIONS) | # _AM_SET_OPTIONS(OPTIONS) | ||||||
| # ---------------------------------- | # ------------------------ | ||||||
| # OPTIONS is a space-separated list of Automake options. | # OPTIONS is a space-separated list of Automake options. | ||||||
| AC_DEFUN([_AM_SET_OPTIONS], | AC_DEFUN([_AM_SET_OPTIONS], | ||||||
| [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) | [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) | ||||||
|  | @ -427,24 +447,82 @@ AC_DEFUN([_AM_SET_OPTIONS], | ||||||
| AC_DEFUN([_AM_IF_OPTION], | AC_DEFUN([_AM_IF_OPTION], | ||||||
| [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) | [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) | ||||||
| 
 | 
 | ||||||
| # Check to make sure that the build environment is sane.    -*- Autoconf -*- | # Copyright (C) 1999-2013 Free Software Foundation, Inc. | ||||||
| 
 |  | ||||||
| # Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005, 2008 |  | ||||||
| # Free Software Foundation, Inc. |  | ||||||
| # | # | ||||||
| # This file is free software; the Free Software Foundation | # This file is free software; the Free Software Foundation | ||||||
| # gives unlimited permission to copy and/or distribute it, | # gives unlimited permission to copy and/or distribute it, | ||||||
| # with or without modifications, as long as this notice is preserved. | # with or without modifications, as long as this notice is preserved. | ||||||
| 
 | 
 | ||||||
| # serial 5 | # _AM_PROG_CC_C_O | ||||||
|  | # --------------- | ||||||
|  | # Like AC_PROG_CC_C_O, but changed for automake.  We rewrite AC_PROG_CC | ||||||
|  | # to automatically call this. | ||||||
|  | AC_DEFUN([_AM_PROG_CC_C_O], | ||||||
|  | [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl | ||||||
|  | AC_REQUIRE_AUX_FILE([compile])dnl | ||||||
|  | AC_LANG_PUSH([C])dnl | ||||||
|  | AC_CACHE_CHECK( | ||||||
|  |   [whether $CC understands -c and -o together], | ||||||
|  |   [am_cv_prog_cc_c_o], | ||||||
|  |   [AC_LANG_CONFTEST([AC_LANG_PROGRAM([])]) | ||||||
|  |   # Make sure it works both with $CC and with simple cc. | ||||||
|  |   # Following AC_PROG_CC_C_O, we do the test twice because some | ||||||
|  |   # compilers refuse to overwrite an existing .o file with -o, | ||||||
|  |   # though they will create one. | ||||||
|  |   am_cv_prog_cc_c_o=yes | ||||||
|  |   for am_i in 1 2; do | ||||||
|  |     if AM_RUN_LOG([$CC -c conftest.$ac_ext -o conftest2.$ac_objext]) \ | ||||||
|  |          && test -f conftest2.$ac_objext; then | ||||||
|  |       : OK | ||||||
|  |     else | ||||||
|  |       am_cv_prog_cc_c_o=no | ||||||
|  |       break | ||||||
|  |     fi | ||||||
|  |   done | ||||||
|  |   rm -f core conftest* | ||||||
|  |   unset am_i]) | ||||||
|  | if test "$am_cv_prog_cc_c_o" != yes; then | ||||||
|  |    # Losing compiler, so override with the script. | ||||||
|  |    # FIXME: It is wrong to rewrite CC. | ||||||
|  |    # But if we don't then we get into trouble of one sort or another. | ||||||
|  |    # A longer-term fix would be to have automake use am__CC in this case, | ||||||
|  |    # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" | ||||||
|  |    CC="$am_aux_dir/compile $CC" | ||||||
|  | fi | ||||||
|  | AC_LANG_POP([C])]) | ||||||
|  | 
 | ||||||
|  | # For backward compatibility. | ||||||
|  | AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])]) | ||||||
|  | 
 | ||||||
|  | # Copyright (C) 2001-2013 Free Software Foundation, Inc. | ||||||
|  | # | ||||||
|  | # This file is free software; the Free Software Foundation | ||||||
|  | # gives unlimited permission to copy and/or distribute it, | ||||||
|  | # with or without modifications, as long as this notice is preserved. | ||||||
|  | 
 | ||||||
|  | # AM_RUN_LOG(COMMAND) | ||||||
|  | # ------------------- | ||||||
|  | # Run COMMAND, save the exit status in ac_status, and log it. | ||||||
|  | # (This has been adapted from Autoconf's _AC_RUN_LOG macro.) | ||||||
|  | AC_DEFUN([AM_RUN_LOG], | ||||||
|  | [{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD | ||||||
|  |    ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD | ||||||
|  |    ac_status=$? | ||||||
|  |    echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD | ||||||
|  |    (exit $ac_status); }]) | ||||||
|  | 
 | ||||||
|  | # Check to make sure that the build environment is sane.    -*- Autoconf -*- | ||||||
|  | 
 | ||||||
|  | # Copyright (C) 1996-2013 Free Software Foundation, Inc. | ||||||
|  | # | ||||||
|  | # This file is free software; the Free Software Foundation | ||||||
|  | # gives unlimited permission to copy and/or distribute it, | ||||||
|  | # with or without modifications, as long as this notice is preserved. | ||||||
| 
 | 
 | ||||||
| # AM_SANITY_CHECK | # AM_SANITY_CHECK | ||||||
| # --------------- | # --------------- | ||||||
| AC_DEFUN([AM_SANITY_CHECK], | AC_DEFUN([AM_SANITY_CHECK], | ||||||
| [AC_MSG_CHECKING([whether build environment is sane]) | [AC_MSG_CHECKING([whether build environment is sane]) | ||||||
| # Just in case |  | ||||||
| sleep 1 |  | ||||||
| echo timestamp > conftest.file |  | ||||||
| # Reject unsafe characters in $srcdir or the absolute working directory | # Reject unsafe characters in $srcdir or the absolute working directory | ||||||
| # name.  Accept space and tab only in the latter. | # name.  Accept space and tab only in the latter. | ||||||
| am_lf=' | am_lf=' | ||||||
|  | @ -455,21 +533,23 @@ case `pwd` in | ||||||
| esac | esac | ||||||
| case $srcdir in | case $srcdir in | ||||||
|   *[[\\\"\#\$\&\'\`$am_lf\ \	]]*) |   *[[\\\"\#\$\&\'\`$am_lf\ \	]]*) | ||||||
|     AC_MSG_ERROR([unsafe srcdir value: `$srcdir']);; |     AC_MSG_ERROR([unsafe srcdir value: '$srcdir']);; | ||||||
| esac | esac | ||||||
| 
 | 
 | ||||||
| # Do `set' in a subshell so we don't clobber the current shell's | # Do 'set' in a subshell so we don't clobber the current shell's | ||||||
| # arguments.  Must try -L first in case configure is actually a | # arguments.  Must try -L first in case configure is actually a | ||||||
| # symlink; some systems play weird games with the mod time of symlinks | # symlink; some systems play weird games with the mod time of symlinks | ||||||
| # (eg FreeBSD returns the mod time of the symlink's containing | # (eg FreeBSD returns the mod time of the symlink's containing | ||||||
| # directory). | # directory). | ||||||
| if ( | if ( | ||||||
|  |    am_has_slept=no | ||||||
|  |    for am_try in 1 2; do | ||||||
|  |      echo "timestamp, slept: $am_has_slept" > conftest.file | ||||||
|      set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` |      set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` | ||||||
|      if test "$[*]" = "X"; then |      if test "$[*]" = "X"; then | ||||||
| 	# -L didn't work. | 	# -L didn't work. | ||||||
| 	set X `ls -t "$srcdir/configure" conftest.file` | 	set X `ls -t "$srcdir/configure" conftest.file` | ||||||
|      fi |      fi | ||||||
|    rm -f conftest.file |  | ||||||
|      if test "$[*]" != "X $srcdir/configure conftest.file" \ |      if test "$[*]" != "X $srcdir/configure conftest.file" \ | ||||||
| 	&& test "$[*]" != "X conftest.file $srcdir/configure"; then | 	&& test "$[*]" != "X conftest.file $srcdir/configure"; then | ||||||
| 
 | 
 | ||||||
|  | @ -478,9 +558,15 @@ if ( | ||||||
| 	# broken ls alias from the environment.  This has actually | 	# broken ls alias from the environment.  This has actually | ||||||
| 	# happened.  Such a system could not be considered "sane". | 	# happened.  Such a system could not be considered "sane". | ||||||
| 	AC_MSG_ERROR([ls -t appears to fail.  Make sure there is not a broken | 	AC_MSG_ERROR([ls -t appears to fail.  Make sure there is not a broken | ||||||
| alias in your environment]) |   alias in your environment]) | ||||||
|      fi |      fi | ||||||
| 
 |      if test "$[2]" = conftest.file || test $am_try -eq 2; then | ||||||
|  |        break | ||||||
|  |      fi | ||||||
|  |      # Just in case. | ||||||
|  |      sleep 1 | ||||||
|  |      am_has_slept=yes | ||||||
|  |    done | ||||||
|    test "$[2]" = conftest.file |    test "$[2]" = conftest.file | ||||||
|    ) |    ) | ||||||
| then | then | ||||||
|  | @ -490,36 +576,85 @@ else | ||||||
|    AC_MSG_ERROR([newly created file is older than distributed files! |    AC_MSG_ERROR([newly created file is older than distributed files! | ||||||
| Check your system clock]) | Check your system clock]) | ||||||
| fi | fi | ||||||
| AC_MSG_RESULT(yes)]) | AC_MSG_RESULT([yes]) | ||||||
|  | # If we didn't sleep, we still need to ensure time stamps of config.status and | ||||||
|  | # generated files are strictly newer. | ||||||
|  | am_sleep_pid= | ||||||
|  | if grep 'slept: no' conftest.file >/dev/null 2>&1; then | ||||||
|  |   ( sleep 1 ) & | ||||||
|  |   am_sleep_pid=$! | ||||||
|  | fi | ||||||
|  | AC_CONFIG_COMMANDS_PRE( | ||||||
|  |   [AC_MSG_CHECKING([that generated files are newer than configure]) | ||||||
|  |    if test -n "$am_sleep_pid"; then | ||||||
|  |      # Hide warnings about reused PIDs. | ||||||
|  |      wait $am_sleep_pid 2>/dev/null | ||||||
|  |    fi | ||||||
|  |    AC_MSG_RESULT([done])]) | ||||||
|  | rm -f conftest.file | ||||||
|  | ]) | ||||||
| 
 | 
 | ||||||
| # Copyright (C) 2009  Free Software Foundation, Inc. | # Copyright (C) 2009-2013 Free Software Foundation, Inc. | ||||||
| # | # | ||||||
| # This file is free software; the Free Software Foundation | # This file is free software; the Free Software Foundation | ||||||
| # gives unlimited permission to copy and/or distribute it, | # gives unlimited permission to copy and/or distribute it, | ||||||
| # with or without modifications, as long as this notice is preserved. | # with or without modifications, as long as this notice is preserved. | ||||||
| 
 | 
 | ||||||
| # serial 1 |  | ||||||
| 
 |  | ||||||
| # AM_SILENT_RULES([DEFAULT]) | # AM_SILENT_RULES([DEFAULT]) | ||||||
| # -------------------------- | # -------------------------- | ||||||
| # Enable less verbose build rules; with the default set to DEFAULT | # Enable less verbose build rules; with the default set to DEFAULT | ||||||
| # (`yes' being less verbose, `no' or empty being verbose). | # ("yes" being less verbose, "no" or empty being verbose). | ||||||
| AC_DEFUN([AM_SILENT_RULES], | AC_DEFUN([AM_SILENT_RULES], | ||||||
| [AC_ARG_ENABLE([silent-rules], | [AC_ARG_ENABLE([silent-rules], [dnl | ||||||
| [  --enable-silent-rules          less verbose build output (undo: `make V=1') | AS_HELP_STRING( | ||||||
|   --disable-silent-rules         verbose build output (undo: `make V=0')]) |   [--enable-silent-rules], | ||||||
| case $enable_silent_rules in |   [less verbose build output (undo: "make V=1")]) | ||||||
| yes) AM_DEFAULT_VERBOSITY=0;; | AS_HELP_STRING( | ||||||
| no)  AM_DEFAULT_VERBOSITY=1;; |   [--disable-silent-rules], | ||||||
| *)   AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);; |   [verbose build output (undo: "make V=0")])dnl | ||||||
|  | ]) | ||||||
|  | case $enable_silent_rules in @%:@ ((( | ||||||
|  |   yes) AM_DEFAULT_VERBOSITY=0;; | ||||||
|  |    no) AM_DEFAULT_VERBOSITY=1;; | ||||||
|  |     *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);; | ||||||
| esac | esac | ||||||
|  | dnl | ||||||
|  | dnl A few 'make' implementations (e.g., NonStop OS and NextStep) | ||||||
|  | dnl do not support nested variable expansions. | ||||||
|  | dnl See automake bug#9928 and bug#10237. | ||||||
|  | am_make=${MAKE-make} | ||||||
|  | AC_CACHE_CHECK([whether $am_make supports nested variables], | ||||||
|  |    [am_cv_make_support_nested_variables], | ||||||
|  |    [if AS_ECHO([['TRUE=$(BAR$(V)) | ||||||
|  | BAR0=false | ||||||
|  | BAR1=true | ||||||
|  | V=1 | ||||||
|  | am__doit: | ||||||
|  | 	@$(TRUE) | ||||||
|  | .PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then | ||||||
|  |   am_cv_make_support_nested_variables=yes | ||||||
|  | else | ||||||
|  |   am_cv_make_support_nested_variables=no | ||||||
|  | fi]) | ||||||
|  | if test $am_cv_make_support_nested_variables = yes; then | ||||||
|  |   dnl Using '$V' instead of '$(V)' breaks IRIX make. | ||||||
|  |   AM_V='$(V)' | ||||||
|  |   AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' | ||||||
|  | else | ||||||
|  |   AM_V=$AM_DEFAULT_VERBOSITY | ||||||
|  |   AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY | ||||||
|  | fi | ||||||
|  | AC_SUBST([AM_V])dnl | ||||||
|  | AM_SUBST_NOTMAKE([AM_V])dnl | ||||||
|  | AC_SUBST([AM_DEFAULT_V])dnl | ||||||
|  | AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl | ||||||
| AC_SUBST([AM_DEFAULT_VERBOSITY])dnl | AC_SUBST([AM_DEFAULT_VERBOSITY])dnl | ||||||
| AM_BACKSLASH='\' | AM_BACKSLASH='\' | ||||||
| AC_SUBST([AM_BACKSLASH])dnl | AC_SUBST([AM_BACKSLASH])dnl | ||||||
| _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl | _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl | ||||||
| ]) | ]) | ||||||
| 
 | 
 | ||||||
| # Copyright (C) 2001, 2003, 2005  Free Software Foundation, Inc. | # Copyright (C) 2001-2013 Free Software Foundation, Inc. | ||||||
| # | # | ||||||
| # This file is free software; the Free Software Foundation | # This file is free software; the Free Software Foundation | ||||||
| # gives unlimited permission to copy and/or distribute it, | # gives unlimited permission to copy and/or distribute it, | ||||||
|  | @ -527,34 +662,32 @@ _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl | ||||||
| 
 | 
 | ||||||
| # AM_PROG_INSTALL_STRIP | # AM_PROG_INSTALL_STRIP | ||||||
| # --------------------- | # --------------------- | ||||||
| # One issue with vendor `install' (even GNU) is that you can't | # One issue with vendor 'install' (even GNU) is that you can't | ||||||
| # specify the program used to strip binaries.  This is especially | # specify the program used to strip binaries.  This is especially | ||||||
| # annoying in cross-compiling environments, where the build's strip | # annoying in cross-compiling environments, where the build's strip | ||||||
| # is unlikely to handle the host's binaries. | # is unlikely to handle the host's binaries. | ||||||
| # Fortunately install-sh will honor a STRIPPROG variable, so we | # Fortunately install-sh will honor a STRIPPROG variable, so we | ||||||
| # always use install-sh in `make install-strip', and initialize | # always use install-sh in "make install-strip", and initialize | ||||||
| # STRIPPROG with the value of the STRIP variable (set by the user). | # STRIPPROG with the value of the STRIP variable (set by the user). | ||||||
| AC_DEFUN([AM_PROG_INSTALL_STRIP], | AC_DEFUN([AM_PROG_INSTALL_STRIP], | ||||||
| [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl | [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl | ||||||
| # Installed binaries are usually stripped using `strip' when the user | # Installed binaries are usually stripped using 'strip' when the user | ||||||
| # run `make install-strip'.  However `strip' might not be the right | # run "make install-strip".  However 'strip' might not be the right | ||||||
| # tool to use in cross-compilation environments, therefore Automake | # tool to use in cross-compilation environments, therefore Automake | ||||||
| # will honor the `STRIP' environment variable to overrule this program. | # will honor the 'STRIP' environment variable to overrule this program. | ||||||
| dnl Don't test for $cross_compiling = yes, because it might be `maybe'. | dnl Don't test for $cross_compiling = yes, because it might be 'maybe'. | ||||||
| if test "$cross_compiling" != no; then | if test "$cross_compiling" != no; then | ||||||
|   AC_CHECK_TOOL([STRIP], [strip], :) |   AC_CHECK_TOOL([STRIP], [strip], :) | ||||||
| fi | fi | ||||||
| INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" | INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" | ||||||
| AC_SUBST([INSTALL_STRIP_PROGRAM])]) | AC_SUBST([INSTALL_STRIP_PROGRAM])]) | ||||||
| 
 | 
 | ||||||
| # Copyright (C) 2006, 2008  Free Software Foundation, Inc. | # Copyright (C) 2006-2013 Free Software Foundation, Inc. | ||||||
| # | # | ||||||
| # This file is free software; the Free Software Foundation | # This file is free software; the Free Software Foundation | ||||||
| # gives unlimited permission to copy and/or distribute it, | # gives unlimited permission to copy and/or distribute it, | ||||||
| # with or without modifications, as long as this notice is preserved. | # with or without modifications, as long as this notice is preserved. | ||||||
| 
 | 
 | ||||||
| # serial 2 |  | ||||||
| 
 |  | ||||||
| # _AM_SUBST_NOTMAKE(VARIABLE) | # _AM_SUBST_NOTMAKE(VARIABLE) | ||||||
| # --------------------------- | # --------------------------- | ||||||
| # Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. | # Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. | ||||||
|  | @ -562,24 +695,22 @@ AC_SUBST([INSTALL_STRIP_PROGRAM])]) | ||||||
| AC_DEFUN([_AM_SUBST_NOTMAKE]) | AC_DEFUN([_AM_SUBST_NOTMAKE]) | ||||||
| 
 | 
 | ||||||
| # AM_SUBST_NOTMAKE(VARIABLE) | # AM_SUBST_NOTMAKE(VARIABLE) | ||||||
| # --------------------------- | # -------------------------- | ||||||
| # Public sister of _AM_SUBST_NOTMAKE. | # Public sister of _AM_SUBST_NOTMAKE. | ||||||
| AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) | AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) | ||||||
| 
 | 
 | ||||||
| # Check how to create a tarball.                            -*- Autoconf -*- | # Check how to create a tarball.                            -*- Autoconf -*- | ||||||
| 
 | 
 | ||||||
| # Copyright (C) 2004, 2005  Free Software Foundation, Inc. | # Copyright (C) 2004-2013 Free Software Foundation, Inc. | ||||||
| # | # | ||||||
| # This file is free software; the Free Software Foundation | # This file is free software; the Free Software Foundation | ||||||
| # gives unlimited permission to copy and/or distribute it, | # gives unlimited permission to copy and/or distribute it, | ||||||
| # with or without modifications, as long as this notice is preserved. | # with or without modifications, as long as this notice is preserved. | ||||||
| 
 | 
 | ||||||
| # serial 2 |  | ||||||
| 
 |  | ||||||
| # _AM_PROG_TAR(FORMAT) | # _AM_PROG_TAR(FORMAT) | ||||||
| # -------------------- | # -------------------- | ||||||
| # Check how to create a tarball in format FORMAT. | # Check how to create a tarball in format FORMAT. | ||||||
| # FORMAT should be one of `v7', `ustar', or `pax'. | # FORMAT should be one of 'v7', 'ustar', or 'pax'. | ||||||
| # | # | ||||||
| # Substitute a variable $(am__tar) that is a command | # Substitute a variable $(am__tar) that is a command | ||||||
| # writing to stdout a FORMAT-tarball containing the directory | # writing to stdout a FORMAT-tarball containing the directory | ||||||
|  | @ -589,25 +720,62 @@ AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) | ||||||
| # Substitute a variable $(am__untar) that extract such | # Substitute a variable $(am__untar) that extract such | ||||||
| # a tarball read from stdin. | # a tarball read from stdin. | ||||||
| #     $(am__untar) < result.tar | #     $(am__untar) < result.tar | ||||||
|  | # | ||||||
| AC_DEFUN([_AM_PROG_TAR], | AC_DEFUN([_AM_PROG_TAR], | ||||||
| [# Always define AMTAR for backward compatibility. | [# Always define AMTAR for backward compatibility.  Yes, it's still used | ||||||
| AM_MISSING_PROG([AMTAR], [tar]) | # in the wild :-(  We should find a proper way to deprecate it ... | ||||||
| m4_if([$1], [v7], | AC_SUBST([AMTAR], ['$${TAR-tar}']) | ||||||
|      [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'], | 
 | ||||||
|      [m4_case([$1], [ustar],, [pax],, | # We'll loop over all known methods to create a tar archive until one works. | ||||||
|               [m4_fatal([Unknown tar format])]) |  | ||||||
| AC_MSG_CHECKING([how to create a $1 tar archive]) |  | ||||||
| # Loop over all known methods to create a tar archive until one works. |  | ||||||
| _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' | _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' | ||||||
| _am_tools=${am_cv_prog_tar_$1-$_am_tools} | 
 | ||||||
| # Do not fold the above two line into one, because Tru64 sh and | m4_if([$1], [v7], | ||||||
| # Solaris sh will not grok spaces in the rhs of `-'. |   [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'], | ||||||
| for _am_tool in $_am_tools | 
 | ||||||
| do |   [m4_case([$1], | ||||||
|  |     [ustar], | ||||||
|  |      [# The POSIX 1988 'ustar' format is defined with fixed-size fields. | ||||||
|  |       # There is notably a 21 bits limit for the UID and the GID.  In fact, | ||||||
|  |       # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343 | ||||||
|  |       # and bug#13588). | ||||||
|  |       am_max_uid=2097151 # 2^21 - 1 | ||||||
|  |       am_max_gid=$am_max_uid | ||||||
|  |       # The $UID and $GID variables are not portable, so we need to resort | ||||||
|  |       # to the POSIX-mandated id(1) utility.  Errors in the 'id' calls | ||||||
|  |       # below are definitely unexpected, so allow the users to see them | ||||||
|  |       # (that is, avoid stderr redirection). | ||||||
|  |       am_uid=`id -u || echo unknown` | ||||||
|  |       am_gid=`id -g || echo unknown` | ||||||
|  |       AC_MSG_CHECKING([whether UID '$am_uid' is supported by ustar format]) | ||||||
|  |       if test $am_uid -le $am_max_uid; then | ||||||
|  |          AC_MSG_RESULT([yes]) | ||||||
|  |       else | ||||||
|  |          AC_MSG_RESULT([no]) | ||||||
|  |          _am_tools=none | ||||||
|  |       fi | ||||||
|  |       AC_MSG_CHECKING([whether GID '$am_gid' is supported by ustar format]) | ||||||
|  |       if test $am_gid -le $am_max_gid; then | ||||||
|  |          AC_MSG_RESULT([yes]) | ||||||
|  |       else | ||||||
|  |         AC_MSG_RESULT([no]) | ||||||
|  |         _am_tools=none | ||||||
|  |       fi], | ||||||
|  | 
 | ||||||
|  |   [pax], | ||||||
|  |     [], | ||||||
|  | 
 | ||||||
|  |   [m4_fatal([Unknown tar format])]) | ||||||
|  | 
 | ||||||
|  |   AC_MSG_CHECKING([how to create a $1 tar archive]) | ||||||
|  | 
 | ||||||
|  |   # Go ahead even if we have the value already cached.  We do so because we | ||||||
|  |   # need to set the values for the 'am__tar' and 'am__untar' variables. | ||||||
|  |   _am_tools=${am_cv_prog_tar_$1-$_am_tools} | ||||||
|  | 
 | ||||||
|  |   for _am_tool in $_am_tools; do | ||||||
|     case $_am_tool in |     case $_am_tool in | ||||||
|     gnutar) |     gnutar) | ||||||
|     for _am_tar in tar gnutar gtar; |       for _am_tar in tar gnutar gtar; do | ||||||
|     do |  | ||||||
|         AM_RUN_LOG([$_am_tar --version]) && break |         AM_RUN_LOG([$_am_tar --version]) && break | ||||||
|       done |       done | ||||||
|       am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' |       am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' | ||||||
|  | @ -643,7 +811,7 @@ do | ||||||
|     # and am__untar set. |     # and am__untar set. | ||||||
|     test -n "${am_cv_prog_tar_$1}" && break |     test -n "${am_cv_prog_tar_$1}" && break | ||||||
| 
 | 
 | ||||||
|   # tar/untar a dummy directory, and stop if the command works |     # tar/untar a dummy directory, and stop if the command works. | ||||||
|     rm -rf conftest.dir |     rm -rf conftest.dir | ||||||
|     mkdir conftest.dir |     mkdir conftest.dir | ||||||
|     echo GrepMe > conftest.dir/file |     echo GrepMe > conftest.dir/file | ||||||
|  | @ -651,13 +819,15 @@ do | ||||||
|     rm -rf conftest.dir |     rm -rf conftest.dir | ||||||
|     if test -s conftest.tar; then |     if test -s conftest.tar; then | ||||||
|       AM_RUN_LOG([$am__untar <conftest.tar]) |       AM_RUN_LOG([$am__untar <conftest.tar]) | ||||||
|  |       AM_RUN_LOG([cat conftest.dir/file]) | ||||||
|       grep GrepMe conftest.dir/file >/dev/null 2>&1 && break |       grep GrepMe conftest.dir/file >/dev/null 2>&1 && break | ||||||
|     fi |     fi | ||||||
| done |   done | ||||||
| rm -rf conftest.dir |   rm -rf conftest.dir | ||||||
|  | 
 | ||||||
|  |   AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) | ||||||
|  |   AC_MSG_RESULT([$am_cv_prog_tar_$1])]) | ||||||
| 
 | 
 | ||||||
| AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) |  | ||||||
| AC_MSG_RESULT([$am_cv_prog_tar_$1])]) |  | ||||||
| AC_SUBST([am__tar]) | AC_SUBST([am__tar]) | ||||||
| AC_SUBST([am__untar]) | AC_SUBST([am__untar]) | ||||||
| ]) # _AM_PROG_TAR | ]) # _AM_PROG_TAR | ||||||
|  |  | ||||||
|  | @ -1,5 +1,7 @@ | ||||||
| #!/bin/sh | #!/bin/sh | ||||||
|  | mkdir -p m4 | ||||||
| aclocal || exit 1 | aclocal || exit 1 | ||||||
| automake -a -c || exit 1 | automake -a -c || exit 1 | ||||||
| autoconf || exit 1 | autoconf || exit 1 | ||||||
| rm -rf autom4te.cache | rm -rf autom4te.cache | ||||||
|  | rm -d m4 | ||||||
|  |  | ||||||
							
								
								
									
										347
									
								
								compile
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										347
									
								
								compile
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,347 @@ | ||||||
|  | #! /bin/sh | ||||||
|  | # Wrapper for compilers which do not understand '-c -o'. | ||||||
|  | 
 | ||||||
|  | scriptversion=2012-10-14.11; # UTC | ||||||
|  | 
 | ||||||
|  | # Copyright (C) 1999-2013 Free Software Foundation, Inc. | ||||||
|  | # Written by Tom Tromey <tromey@cygnus.com>. | ||||||
|  | # | ||||||
|  | # This program is free software; you can redistribute it and/or modify | ||||||
|  | # it under the terms of the GNU General Public License as published by | ||||||
|  | # the Free Software Foundation; either version 2, or (at your option) | ||||||
|  | # any later version. | ||||||
|  | # | ||||||
|  | # This program is distributed in the hope that it will be useful, | ||||||
|  | # but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||||
|  | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | ||||||
|  | # GNU General Public License for more details. | ||||||
|  | # | ||||||
|  | # You should have received a copy of the GNU General Public License | ||||||
|  | # along with this program.  If not, see <http://www.gnu.org/licenses/>. | ||||||
|  | 
 | ||||||
|  | # As a special exception to the GNU General Public License, if you | ||||||
|  | # distribute this file as part of a program that contains a | ||||||
|  | # configuration script generated by Autoconf, you may include it under | ||||||
|  | # the same distribution terms that you use for the rest of that program. | ||||||
|  | 
 | ||||||
|  | # This file is maintained in Automake, please report | ||||||
|  | # bugs to <bug-automake@gnu.org> or send patches to | ||||||
|  | # <automake-patches@gnu.org>. | ||||||
|  | 
 | ||||||
|  | nl=' | ||||||
|  | ' | ||||||
|  | 
 | ||||||
|  | # We need space, tab and new line, in precisely that order.  Quoting is | ||||||
|  | # there to prevent tools from complaining about whitespace usage. | ||||||
|  | IFS=" ""	$nl" | ||||||
|  | 
 | ||||||
|  | file_conv= | ||||||
|  | 
 | ||||||
|  | # func_file_conv build_file lazy | ||||||
|  | # Convert a $build file to $host form and store it in $file | ||||||
|  | # Currently only supports Windows hosts. If the determined conversion | ||||||
|  | # type is listed in (the comma separated) LAZY, no conversion will | ||||||
|  | # take place. | ||||||
|  | func_file_conv () | ||||||
|  | { | ||||||
|  |   file=$1 | ||||||
|  |   case $file in | ||||||
|  |     / | /[!/]*) # absolute file, and not a UNC file | ||||||
|  |       if test -z "$file_conv"; then | ||||||
|  | 	# lazily determine how to convert abs files | ||||||
|  | 	case `uname -s` in | ||||||
|  | 	  MINGW*) | ||||||
|  | 	    file_conv=mingw | ||||||
|  | 	    ;; | ||||||
|  | 	  CYGWIN*|MSYS*) | ||||||
|  | 	    file_conv=cygwin | ||||||
|  | 	    ;; | ||||||
|  | 	  *) | ||||||
|  | 	    file_conv=wine | ||||||
|  | 	    ;; | ||||||
|  | 	esac | ||||||
|  |       fi | ||||||
|  |       case $file_conv/,$2, in | ||||||
|  | 	*,$file_conv,*) | ||||||
|  | 	  ;; | ||||||
|  | 	mingw/*) | ||||||
|  | 	  file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'` | ||||||
|  | 	  ;; | ||||||
|  | 	cygwin/*|msys/*) | ||||||
|  | 	  file=`cygpath -m "$file" || echo "$file"` | ||||||
|  | 	  ;; | ||||||
|  | 	wine/*) | ||||||
|  | 	  file=`winepath -w "$file" || echo "$file"` | ||||||
|  | 	  ;; | ||||||
|  |       esac | ||||||
|  |       ;; | ||||||
|  |   esac | ||||||
|  | } | ||||||
|  | 
 | ||||||
|  | # func_cl_dashL linkdir | ||||||
|  | # Make cl look for libraries in LINKDIR | ||||||
|  | func_cl_dashL () | ||||||
|  | { | ||||||
|  |   func_file_conv "$1" | ||||||
|  |   if test -z "$lib_path"; then | ||||||
|  |     lib_path=$file | ||||||
|  |   else | ||||||
|  |     lib_path="$lib_path;$file" | ||||||
|  |   fi | ||||||
|  |   linker_opts="$linker_opts -LIBPATH:$file" | ||||||
|  | } | ||||||
|  | 
 | ||||||
|  | # func_cl_dashl library | ||||||
|  | # Do a library search-path lookup for cl | ||||||
|  | func_cl_dashl () | ||||||
|  | { | ||||||
|  |   lib=$1 | ||||||
|  |   found=no | ||||||
|  |   save_IFS=$IFS | ||||||
|  |   IFS=';' | ||||||
|  |   for dir in $lib_path $LIB | ||||||
|  |   do | ||||||
|  |     IFS=$save_IFS | ||||||
|  |     if $shared && test -f "$dir/$lib.dll.lib"; then | ||||||
|  |       found=yes | ||||||
|  |       lib=$dir/$lib.dll.lib | ||||||
|  |       break | ||||||
|  |     fi | ||||||
|  |     if test -f "$dir/$lib.lib"; then | ||||||
|  |       found=yes | ||||||
|  |       lib=$dir/$lib.lib | ||||||
|  |       break | ||||||
|  |     fi | ||||||
|  |     if test -f "$dir/lib$lib.a"; then | ||||||
|  |       found=yes | ||||||
|  |       lib=$dir/lib$lib.a | ||||||
|  |       break | ||||||
|  |     fi | ||||||
|  |   done | ||||||
|  |   IFS=$save_IFS | ||||||
|  | 
 | ||||||
|  |   if test "$found" != yes; then | ||||||
|  |     lib=$lib.lib | ||||||
|  |   fi | ||||||
|  | } | ||||||
|  | 
 | ||||||
|  | # func_cl_wrapper cl arg... | ||||||
|  | # Adjust compile command to suit cl | ||||||
|  | func_cl_wrapper () | ||||||
|  | { | ||||||
|  |   # Assume a capable shell | ||||||
|  |   lib_path= | ||||||
|  |   shared=: | ||||||
|  |   linker_opts= | ||||||
|  |   for arg | ||||||
|  |   do | ||||||
|  |     if test -n "$eat"; then | ||||||
|  |       eat= | ||||||
|  |     else | ||||||
|  |       case $1 in | ||||||
|  | 	-o) | ||||||
|  | 	  # configure might choose to run compile as 'compile cc -o foo foo.c'. | ||||||
|  | 	  eat=1 | ||||||
|  | 	  case $2 in | ||||||
|  | 	    *.o | *.[oO][bB][jJ]) | ||||||
|  | 	      func_file_conv "$2" | ||||||
|  | 	      set x "$@" -Fo"$file" | ||||||
|  | 	      shift | ||||||
|  | 	      ;; | ||||||
|  | 	    *) | ||||||
|  | 	      func_file_conv "$2" | ||||||
|  | 	      set x "$@" -Fe"$file" | ||||||
|  | 	      shift | ||||||
|  | 	      ;; | ||||||
|  | 	  esac | ||||||
|  | 	  ;; | ||||||
|  | 	-I) | ||||||
|  | 	  eat=1 | ||||||
|  | 	  func_file_conv "$2" mingw | ||||||
|  | 	  set x "$@" -I"$file" | ||||||
|  | 	  shift | ||||||
|  | 	  ;; | ||||||
|  | 	-I*) | ||||||
|  | 	  func_file_conv "${1#-I}" mingw | ||||||
|  | 	  set x "$@" -I"$file" | ||||||
|  | 	  shift | ||||||
|  | 	  ;; | ||||||
|  | 	-l) | ||||||
|  | 	  eat=1 | ||||||
|  | 	  func_cl_dashl "$2" | ||||||
|  | 	  set x "$@" "$lib" | ||||||
|  | 	  shift | ||||||
|  | 	  ;; | ||||||
|  | 	-l*) | ||||||
|  | 	  func_cl_dashl "${1#-l}" | ||||||
|  | 	  set x "$@" "$lib" | ||||||
|  | 	  shift | ||||||
|  | 	  ;; | ||||||
|  | 	-L) | ||||||
|  | 	  eat=1 | ||||||
|  | 	  func_cl_dashL "$2" | ||||||
|  | 	  ;; | ||||||
|  | 	-L*) | ||||||
|  | 	  func_cl_dashL "${1#-L}" | ||||||
|  | 	  ;; | ||||||
|  | 	-static) | ||||||
|  | 	  shared=false | ||||||
|  | 	  ;; | ||||||
|  | 	-Wl,*) | ||||||
|  | 	  arg=${1#-Wl,} | ||||||
|  | 	  save_ifs="$IFS"; IFS=',' | ||||||
|  | 	  for flag in $arg; do | ||||||
|  | 	    IFS="$save_ifs" | ||||||
|  | 	    linker_opts="$linker_opts $flag" | ||||||
|  | 	  done | ||||||
|  | 	  IFS="$save_ifs" | ||||||
|  | 	  ;; | ||||||
|  | 	-Xlinker) | ||||||
|  | 	  eat=1 | ||||||
|  | 	  linker_opts="$linker_opts $2" | ||||||
|  | 	  ;; | ||||||
|  | 	-*) | ||||||
|  | 	  set x "$@" "$1" | ||||||
|  | 	  shift | ||||||
|  | 	  ;; | ||||||
|  | 	*.cc | *.CC | *.cxx | *.CXX | *.[cC]++) | ||||||
|  | 	  func_file_conv "$1" | ||||||
|  | 	  set x "$@" -Tp"$file" | ||||||
|  | 	  shift | ||||||
|  | 	  ;; | ||||||
|  | 	*.c | *.cpp | *.CPP | *.lib | *.LIB | *.Lib | *.OBJ | *.obj | *.[oO]) | ||||||
|  | 	  func_file_conv "$1" mingw | ||||||
|  | 	  set x "$@" "$file" | ||||||
|  | 	  shift | ||||||
|  | 	  ;; | ||||||
|  | 	*) | ||||||
|  | 	  set x "$@" "$1" | ||||||
|  | 	  shift | ||||||
|  | 	  ;; | ||||||
|  |       esac | ||||||
|  |     fi | ||||||
|  |     shift | ||||||
|  |   done | ||||||
|  |   if test -n "$linker_opts"; then | ||||||
|  |     linker_opts="-link$linker_opts" | ||||||
|  |   fi | ||||||
|  |   exec "$@" $linker_opts | ||||||
|  |   exit 1 | ||||||
|  | } | ||||||
|  | 
 | ||||||
|  | eat= | ||||||
|  | 
 | ||||||
|  | case $1 in | ||||||
|  |   '') | ||||||
|  |      echo "$0: No command.  Try '$0 --help' for more information." 1>&2 | ||||||
|  |      exit 1; | ||||||
|  |      ;; | ||||||
|  |   -h | --h*) | ||||||
|  |     cat <<\EOF | ||||||
|  | Usage: compile [--help] [--version] PROGRAM [ARGS] | ||||||
|  | 
 | ||||||
|  | Wrapper for compilers which do not understand '-c -o'. | ||||||
|  | Remove '-o dest.o' from ARGS, run PROGRAM with the remaining | ||||||
|  | arguments, and rename the output as expected. | ||||||
|  | 
 | ||||||
|  | If you are trying to build a whole package this is not the | ||||||
|  | right script to run: please start by reading the file 'INSTALL'. | ||||||
|  | 
 | ||||||
|  | Report bugs to <bug-automake@gnu.org>. | ||||||
|  | EOF | ||||||
|  |     exit $? | ||||||
|  |     ;; | ||||||
|  |   -v | --v*) | ||||||
|  |     echo "compile $scriptversion" | ||||||
|  |     exit $? | ||||||
|  |     ;; | ||||||
|  |   cl | *[/\\]cl | cl.exe | *[/\\]cl.exe ) | ||||||
|  |     func_cl_wrapper "$@"      # Doesn't return... | ||||||
|  |     ;; | ||||||
|  | esac | ||||||
|  | 
 | ||||||
|  | ofile= | ||||||
|  | cfile= | ||||||
|  | 
 | ||||||
|  | for arg | ||||||
|  | do | ||||||
|  |   if test -n "$eat"; then | ||||||
|  |     eat= | ||||||
|  |   else | ||||||
|  |     case $1 in | ||||||
|  |       -o) | ||||||
|  | 	# configure might choose to run compile as 'compile cc -o foo foo.c'. | ||||||
|  | 	# So we strip '-o arg' only if arg is an object. | ||||||
|  | 	eat=1 | ||||||
|  | 	case $2 in | ||||||
|  | 	  *.o | *.obj) | ||||||
|  | 	    ofile=$2 | ||||||
|  | 	    ;; | ||||||
|  | 	  *) | ||||||
|  | 	    set x "$@" -o "$2" | ||||||
|  | 	    shift | ||||||
|  | 	    ;; | ||||||
|  | 	esac | ||||||
|  | 	;; | ||||||
|  |       *.c) | ||||||
|  | 	cfile=$1 | ||||||
|  | 	set x "$@" "$1" | ||||||
|  | 	shift | ||||||
|  | 	;; | ||||||
|  |       *) | ||||||
|  | 	set x "$@" "$1" | ||||||
|  | 	shift | ||||||
|  | 	;; | ||||||
|  |     esac | ||||||
|  |   fi | ||||||
|  |   shift | ||||||
|  | done | ||||||
|  | 
 | ||||||
|  | if test -z "$ofile" || test -z "$cfile"; then | ||||||
|  |   # If no '-o' option was seen then we might have been invoked from a | ||||||
|  |   # pattern rule where we don't need one.  That is ok -- this is a | ||||||
|  |   # normal compilation that the losing compiler can handle.  If no | ||||||
|  |   # '.c' file was seen then we are probably linking.  That is also | ||||||
|  |   # ok. | ||||||
|  |   exec "$@" | ||||||
|  | fi | ||||||
|  | 
 | ||||||
|  | # Name of file we expect compiler to create. | ||||||
|  | cofile=`echo "$cfile" | sed 's|^.*[\\/]||; s|^[a-zA-Z]:||; s/\.c$/.o/'` | ||||||
|  | 
 | ||||||
|  | # Create the lock directory. | ||||||
|  | # Note: use '[/\\:.-]' here to ensure that we don't use the same name | ||||||
|  | # that we are using for the .o file.  Also, base the name on the expected | ||||||
|  | # object file name, since that is what matters with a parallel build. | ||||||
|  | lockdir=`echo "$cofile" | sed -e 's|[/\\:.-]|_|g'`.d | ||||||
|  | while true; do | ||||||
|  |   if mkdir "$lockdir" >/dev/null 2>&1; then | ||||||
|  |     break | ||||||
|  |   fi | ||||||
|  |   sleep 1 | ||||||
|  | done | ||||||
|  | # FIXME: race condition here if user kills between mkdir and trap. | ||||||
|  | trap "rmdir '$lockdir'; exit 1" 1 2 15 | ||||||
|  | 
 | ||||||
|  | # Run the compile. | ||||||
|  | "$@" | ||||||
|  | ret=$? | ||||||
|  | 
 | ||||||
|  | if test -f "$cofile"; then | ||||||
|  |   test "$cofile" = "$ofile" || mv "$cofile" "$ofile" | ||||||
|  | elif test -f "${cofile}bj"; then | ||||||
|  |   test "${cofile}bj" = "$ofile" || mv "${cofile}bj" "$ofile" | ||||||
|  | fi | ||||||
|  | 
 | ||||||
|  | rmdir "$lockdir" | ||||||
|  | exit $ret | ||||||
|  | 
 | ||||||
|  | # Local Variables: | ||||||
|  | # mode: shell-script | ||||||
|  | # sh-indentation: 2 | ||||||
|  | # eval: (add-hook 'write-file-hooks 'time-stamp) | ||||||
|  | # time-stamp-start: "scriptversion=" | ||||||
|  | # time-stamp-format: "%:y-%02m-%02d.%02H" | ||||||
|  | # time-stamp-time-zone: "UTC" | ||||||
|  | # time-stamp-end: "; # UTC" | ||||||
|  | # End: | ||||||
							
								
								
									
										477
									
								
								configure
									
										
									
									
										vendored
									
									
								
							
							
						
						
									
										477
									
								
								configure
									
										
									
									
										vendored
									
									
								
							|  | @ -1,13 +1,11 @@ | ||||||
| #! /bin/sh | #! /bin/sh | ||||||
| # Guess values for system-dependent variables and create Makefiles. | # Guess values for system-dependent variables and create Makefiles. | ||||||
| # Generated by GNU Autoconf 2.68 for rufus 1.5.0. | # Generated by GNU Autoconf 2.69 for rufus 1.5.0. | ||||||
| # | # | ||||||
| # Report bugs to <https://github.com/pbatard/rufus/issues>. | # Report bugs to <https://github.com/pbatard/rufus/issues>. | ||||||
| # | # | ||||||
| # | # | ||||||
| # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, | # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. | ||||||
| # 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software |  | ||||||
| # Foundation, Inc. |  | ||||||
| # | # | ||||||
| # | # | ||||||
| # This configure script is free software; the Free Software Foundation | # This configure script is free software; the Free Software Foundation | ||||||
|  | @ -136,6 +134,31 @@ export LANGUAGE | ||||||
| # CDPATH. | # CDPATH. | ||||||
| (unset CDPATH) >/dev/null 2>&1 && unset CDPATH | (unset CDPATH) >/dev/null 2>&1 && unset CDPATH | ||||||
| 
 | 
 | ||||||
|  | # Use a proper internal environment variable to ensure we don't fall | ||||||
|  |   # into an infinite loop, continuously re-executing ourselves. | ||||||
|  |   if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then | ||||||
|  |     _as_can_reexec=no; export _as_can_reexec; | ||||||
|  |     # We cannot yet assume a decent shell, so we have to provide a | ||||||
|  | # neutralization value for shells without unset; and this also | ||||||
|  | # works around shells that cannot unset nonexistent variables. | ||||||
|  | # Preserve -v and -x to the replacement shell. | ||||||
|  | BASH_ENV=/dev/null | ||||||
|  | ENV=/dev/null | ||||||
|  | (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV | ||||||
|  | case $- in # (((( | ||||||
|  |   *v*x* | *x*v* ) as_opts=-vx ;; | ||||||
|  |   *v* ) as_opts=-v ;; | ||||||
|  |   *x* ) as_opts=-x ;; | ||||||
|  |   * ) as_opts= ;; | ||||||
|  | esac | ||||||
|  | exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} | ||||||
|  | # Admittedly, this is quite paranoid, since all the known shells bail | ||||||
|  | # out after a failed `exec'. | ||||||
|  | $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 | ||||||
|  | as_fn_exit 255 | ||||||
|  |   fi | ||||||
|  |   # We don't want this to propagate to other subprocesses. | ||||||
|  |           { _as_can_reexec=; unset _as_can_reexec;} | ||||||
| if test "x$CONFIG_SHELL" = x; then | if test "x$CONFIG_SHELL" = x; then | ||||||
|   as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : |   as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : | ||||||
|   emulate sh |   emulate sh | ||||||
|  | @ -169,7 +192,8 @@ if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : | ||||||
| else | else | ||||||
|   exitcode=1; echo positional parameters were not saved. |   exitcode=1; echo positional parameters were not saved. | ||||||
| fi | fi | ||||||
| test x\$exitcode = x0 || exit 1" | test x\$exitcode = x0 || exit 1 | ||||||
|  | test -x / || exit 1" | ||||||
|   as_suggested="  as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO |   as_suggested="  as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO | ||||||
|   as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO |   as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO | ||||||
|   eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && |   eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && | ||||||
|  | @ -214,21 +238,25 @@ IFS=$as_save_IFS | ||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
|       if test "x$CONFIG_SHELL" != x; then : |       if test "x$CONFIG_SHELL" != x; then : | ||||||
|   # We cannot yet assume a decent shell, so we have to provide a |  | ||||||
| 	# neutralization value for shells without unset; and this also |  | ||||||
| 	# works around shells that cannot unset nonexistent variables. |  | ||||||
| 	# Preserve -v and -x to the replacement shell. |  | ||||||
| 	BASH_ENV=/dev/null |  | ||||||
| 	ENV=/dev/null |  | ||||||
| 	(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV |  | ||||||
|   export CONFIG_SHELL |   export CONFIG_SHELL | ||||||
| 	case $- in # (((( |              # We cannot yet assume a decent shell, so we have to provide a | ||||||
|  | # neutralization value for shells without unset; and this also | ||||||
|  | # works around shells that cannot unset nonexistent variables. | ||||||
|  | # Preserve -v and -x to the replacement shell. | ||||||
|  | BASH_ENV=/dev/null | ||||||
|  | ENV=/dev/null | ||||||
|  | (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV | ||||||
|  | case $- in # (((( | ||||||
|   *v*x* | *x*v* ) as_opts=-vx ;; |   *v*x* | *x*v* ) as_opts=-vx ;; | ||||||
|   *v* ) as_opts=-v ;; |   *v* ) as_opts=-v ;; | ||||||
|   *x* ) as_opts=-x ;; |   *x* ) as_opts=-x ;; | ||||||
|   * ) as_opts= ;; |   * ) as_opts= ;; | ||||||
| 	esac | esac | ||||||
| 	exec "$CONFIG_SHELL" $as_opts "$as_myself" ${1+"$@"} | exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} | ||||||
|  | # Admittedly, this is quite paranoid, since all the known shells bail | ||||||
|  | # out after a failed `exec'. | ||||||
|  | $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 | ||||||
|  | exit 255 | ||||||
| fi | fi | ||||||
| 
 | 
 | ||||||
|     if test x$as_have_required = xno; then : |     if test x$as_have_required = xno; then : | ||||||
|  | @ -331,6 +359,14 @@ $as_echo X"$as_dir" | | ||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
| } # as_fn_mkdir_p | } # as_fn_mkdir_p | ||||||
|  | 
 | ||||||
|  | # as_fn_executable_p FILE | ||||||
|  | # ----------------------- | ||||||
|  | # Test if FILE is an executable regular file. | ||||||
|  | as_fn_executable_p () | ||||||
|  | { | ||||||
|  |   test -f "$1" && test -x "$1" | ||||||
|  | } # as_fn_executable_p | ||||||
| # as_fn_append VAR VALUE | # as_fn_append VAR VALUE | ||||||
| # ---------------------- | # ---------------------- | ||||||
| # Append the text in VALUE to the end of the definition contained in VAR. Take | # Append the text in VALUE to the end of the definition contained in VAR. Take | ||||||
|  | @ -452,6 +488,10 @@ as_cr_alnum=$as_cr_Letters$as_cr_digits | ||||||
|   chmod +x "$as_me.lineno" || |   chmod +x "$as_me.lineno" || | ||||||
|     { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } |     { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } | ||||||
| 
 | 
 | ||||||
|  |   # If we had to re-execute with $CONFIG_SHELL, we're ensured to have | ||||||
|  |   # already done that, so ensure we don't try to do so again and fall | ||||||
|  |   # in an infinite loop.  This has already happened in practice. | ||||||
|  |   _as_can_reexec=no; export _as_can_reexec | ||||||
|   # Don't try to exec as it changes $[0], causing all sort of problems |   # Don't try to exec as it changes $[0], causing all sort of problems | ||||||
|   # (the dirname of $[0] is not the place where we might find the |   # (the dirname of $[0] is not the place where we might find the | ||||||
|   # original and so on.  Autoconf is especially sensitive to this). |   # original and so on.  Autoconf is especially sensitive to this). | ||||||
|  | @ -486,16 +526,16 @@ if (echo >conf$$.file) 2>/dev/null; then | ||||||
|     # ... but there are two gotchas: |     # ... but there are two gotchas: | ||||||
|     # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. |     # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. | ||||||
|     # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. |     # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. | ||||||
|     # In both cases, we have to default to `cp -p'. |     # In both cases, we have to default to `cp -pR'. | ||||||
|     ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || |     ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || | ||||||
|       as_ln_s='cp -p' |       as_ln_s='cp -pR' | ||||||
|   elif ln conf$$.file conf$$ 2>/dev/null; then |   elif ln conf$$.file conf$$ 2>/dev/null; then | ||||||
|     as_ln_s=ln |     as_ln_s=ln | ||||||
|   else |   else | ||||||
|     as_ln_s='cp -p' |     as_ln_s='cp -pR' | ||||||
|   fi |   fi | ||||||
| else | else | ||||||
|   as_ln_s='cp -p' |   as_ln_s='cp -pR' | ||||||
| fi | fi | ||||||
| rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file | rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file | ||||||
| rmdir conf$$.dir 2>/dev/null | rmdir conf$$.dir 2>/dev/null | ||||||
|  | @ -507,28 +547,8 @@ else | ||||||
|   as_mkdir_p=false |   as_mkdir_p=false | ||||||
| fi | fi | ||||||
| 
 | 
 | ||||||
| if test -x / >/dev/null 2>&1; then | as_test_x='test -x' | ||||||
|   as_test_x='test -x' | as_executable_p=as_fn_executable_p | ||||||
| else |  | ||||||
|   if ls -dL / >/dev/null 2>&1; then |  | ||||||
|     as_ls_L_option=L |  | ||||||
|   else |  | ||||||
|     as_ls_L_option= |  | ||||||
|   fi |  | ||||||
|   as_test_x=' |  | ||||||
|     eval sh -c '\'' |  | ||||||
|       if test -d "$1"; then |  | ||||||
| 	test -d "$1/."; |  | ||||||
|       else |  | ||||||
| 	case $1 in #( |  | ||||||
| 	-*)set "./$1";; |  | ||||||
| 	esac; |  | ||||||
| 	case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #(( |  | ||||||
| 	???[sx]*):;;*)false;;esac;fi |  | ||||||
|     '\'' sh |  | ||||||
|   ' |  | ||||||
| fi |  | ||||||
| as_executable_p=$as_test_x |  | ||||||
| 
 | 
 | ||||||
| # Sed expression to map a string onto a valid CPP name. | # Sed expression to map a string onto a valid CPP name. | ||||||
| as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" | as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" | ||||||
|  | @ -587,6 +607,8 @@ CFLAGS | ||||||
| CC | CC | ||||||
| AM_BACKSLASH | AM_BACKSLASH | ||||||
| AM_DEFAULT_VERBOSITY | AM_DEFAULT_VERBOSITY | ||||||
|  | AM_DEFAULT_V | ||||||
|  | AM_V | ||||||
| am__untar | am__untar | ||||||
| am__tar | am__tar | ||||||
| AMTAR | AMTAR | ||||||
|  | @ -1119,8 +1141,6 @@ target=$target_alias | ||||||
| if test "x$host_alias" != x; then | if test "x$host_alias" != x; then | ||||||
|   if test "x$build_alias" = x; then |   if test "x$build_alias" = x; then | ||||||
|     cross_compiling=maybe |     cross_compiling=maybe | ||||||
|     $as_echo "$as_me: WARNING: if you wanted to set the --build type, don't use --host. |  | ||||||
|     If a cross compiler is detected then cross compile mode will be used" >&2 |  | ||||||
|   elif test "x$build_alias" != "x$host_alias"; then |   elif test "x$build_alias" != "x$host_alias"; then | ||||||
|     cross_compiling=yes |     cross_compiling=yes | ||||||
|   fi |   fi | ||||||
|  | @ -1280,8 +1300,8 @@ Optional Features: | ||||||
|   --disable-option-checking  ignore unrecognized --enable/--with options |   --disable-option-checking  ignore unrecognized --enable/--with options | ||||||
|   --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no) |   --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no) | ||||||
|   --enable-FEATURE[=ARG]  include FEATURE [ARG=yes] |   --enable-FEATURE[=ARG]  include FEATURE [ARG=yes] | ||||||
|   --enable-silent-rules          less verbose build output (undo: `make V=1') |   --enable-silent-rules   less verbose build output (undo: "make V=1") | ||||||
|   --disable-silent-rules         verbose build output (undo: `make V=0') |   --disable-silent-rules  verbose build output (undo: "make V=0") | ||||||
|   --enable-debug          keep debug symbols for gdb (default=yes) |   --enable-debug          keep debug symbols for gdb (default=yes) | ||||||
|   --enable-alpha          build an ALPHA release (default=no) |   --enable-alpha          build an ALPHA release (default=no) | ||||||
|   --enable-beta           build a BETA release (default=no) |   --enable-beta           build a BETA release (default=no) | ||||||
|  | @ -1363,9 +1383,9 @@ test -n "$ac_init_help" && exit $ac_status | ||||||
| if $ac_init_version; then | if $ac_init_version; then | ||||||
|   cat <<\_ACEOF |   cat <<\_ACEOF | ||||||
| rufus configure 1.5.0 | rufus configure 1.5.0 | ||||||
| generated by GNU Autoconf 2.68 | generated by GNU Autoconf 2.69 | ||||||
| 
 | 
 | ||||||
| Copyright (C) 2010 Free Software Foundation, Inc. | Copyright (C) 2012 Free Software Foundation, Inc. | ||||||
| This configure script is free software; the Free Software Foundation | This configure script is free software; the Free Software Foundation | ||||||
| gives unlimited permission to copy, distribute and modify it. | gives unlimited permission to copy, distribute and modify it. | ||||||
| _ACEOF | _ACEOF | ||||||
|  | @ -1418,7 +1438,7 @@ This file contains any messages produced by compilers while | ||||||
| running configure, to aid debugging if configure makes a mistake. | running configure, to aid debugging if configure makes a mistake. | ||||||
| 
 | 
 | ||||||
| It was created by rufus $as_me 1.5.0, which was | It was created by rufus $as_me 1.5.0, which was | ||||||
| generated by GNU Autoconf 2.68.  Invocation command line was | generated by GNU Autoconf 2.69.  Invocation command line was | ||||||
| 
 | 
 | ||||||
|   $ $0 $@ |   $ $0 $@ | ||||||
| 
 | 
 | ||||||
|  | @ -1676,7 +1696,7 @@ $as_echo "$as_me: loading site script $ac_site_file" >&6;} | ||||||
|       || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 |       || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 | ||||||
| $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} | $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} | ||||||
| as_fn_error $? "failed to load site script $ac_site_file | as_fn_error $? "failed to load site script $ac_site_file | ||||||
| See \`config.log' for more details" "$LINENO" 5 ; } | See \`config.log' for more details" "$LINENO" 5; } | ||||||
|   fi |   fi | ||||||
| done | done | ||||||
| 
 | 
 | ||||||
|  | @ -1765,7 +1785,7 @@ ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $ | ||||||
| ac_compiler_gnu=$ac_cv_c_compiler_gnu | ac_compiler_gnu=$ac_cv_c_compiler_gnu | ||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
| am__api_version='1.11' | am__api_version='1.14' | ||||||
| 
 | 
 | ||||||
| ac_aux_dir= | ac_aux_dir= | ||||||
| for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do | for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do | ||||||
|  | @ -1833,7 +1853,7 @@ case $as_dir/ in #(( | ||||||
|     # by default. |     # by default. | ||||||
|     for ac_prog in ginstall scoinst install; do |     for ac_prog in ginstall scoinst install; do | ||||||
|       for ac_exec_ext in '' $ac_executable_extensions; do |       for ac_exec_ext in '' $ac_executable_extensions; do | ||||||
| 	if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then | 	if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then | ||||||
| 	  if test $ac_prog = install && | 	  if test $ac_prog = install && | ||||||
| 	    grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then | 	    grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then | ||||||
| 	    # AIX install.  It has an incompatible calling convention. | 	    # AIX install.  It has an incompatible calling convention. | ||||||
|  | @ -1891,34 +1911,33 @@ test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' | ||||||
| 
 | 
 | ||||||
| { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 | ||||||
| $as_echo_n "checking whether build environment is sane... " >&6; } | $as_echo_n "checking whether build environment is sane... " >&6; } | ||||||
| # Just in case |  | ||||||
| sleep 1 |  | ||||||
| echo timestamp > conftest.file |  | ||||||
| # Reject unsafe characters in $srcdir or the absolute working directory | # Reject unsafe characters in $srcdir or the absolute working directory | ||||||
| # name.  Accept space and tab only in the latter. | # name.  Accept space and tab only in the latter. | ||||||
| am_lf=' | am_lf=' | ||||||
| ' | ' | ||||||
| case `pwd` in | case `pwd` in | ||||||
|   *[\\\"\#\$\&\'\`$am_lf]*) |   *[\\\"\#\$\&\'\`$am_lf]*) | ||||||
|     as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5 ;; |     as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;; | ||||||
| esac | esac | ||||||
| case $srcdir in | case $srcdir in | ||||||
|   *[\\\"\#\$\&\'\`$am_lf\ \	]*) |   *[\\\"\#\$\&\'\`$am_lf\ \	]*) | ||||||
|     as_fn_error $? "unsafe srcdir value: \`$srcdir'" "$LINENO" 5 ;; |     as_fn_error $? "unsafe srcdir value: '$srcdir'" "$LINENO" 5;; | ||||||
| esac | esac | ||||||
| 
 | 
 | ||||||
| # Do `set' in a subshell so we don't clobber the current shell's | # Do 'set' in a subshell so we don't clobber the current shell's | ||||||
| # arguments.  Must try -L first in case configure is actually a | # arguments.  Must try -L first in case configure is actually a | ||||||
| # symlink; some systems play weird games with the mod time of symlinks | # symlink; some systems play weird games with the mod time of symlinks | ||||||
| # (eg FreeBSD returns the mod time of the symlink's containing | # (eg FreeBSD returns the mod time of the symlink's containing | ||||||
| # directory). | # directory). | ||||||
| if ( | if ( | ||||||
|  |    am_has_slept=no | ||||||
|  |    for am_try in 1 2; do | ||||||
|  |      echo "timestamp, slept: $am_has_slept" > conftest.file | ||||||
|      set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` |      set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` | ||||||
|      if test "$*" = "X"; then |      if test "$*" = "X"; then | ||||||
| 	# -L didn't work. | 	# -L didn't work. | ||||||
| 	set X `ls -t "$srcdir/configure" conftest.file` | 	set X `ls -t "$srcdir/configure" conftest.file` | ||||||
|      fi |      fi | ||||||
|    rm -f conftest.file |  | ||||||
|      if test "$*" != "X $srcdir/configure conftest.file" \ |      if test "$*" != "X $srcdir/configure conftest.file" \ | ||||||
| 	&& test "$*" != "X conftest.file $srcdir/configure"; then | 	&& test "$*" != "X conftest.file $srcdir/configure"; then | ||||||
| 
 | 
 | ||||||
|  | @ -1927,9 +1946,15 @@ if ( | ||||||
| 	# broken ls alias from the environment.  This has actually | 	# broken ls alias from the environment.  This has actually | ||||||
| 	# happened.  Such a system could not be considered "sane". | 	# happened.  Such a system could not be considered "sane". | ||||||
| 	as_fn_error $? "ls -t appears to fail.  Make sure there is not a broken | 	as_fn_error $? "ls -t appears to fail.  Make sure there is not a broken | ||||||
| alias in your environment" "$LINENO" 5 |   alias in your environment" "$LINENO" 5 | ||||||
|      fi |      fi | ||||||
| 
 |      if test "$2" = conftest.file || test $am_try -eq 2; then | ||||||
|  |        break | ||||||
|  |      fi | ||||||
|  |      # Just in case. | ||||||
|  |      sleep 1 | ||||||
|  |      am_has_slept=yes | ||||||
|  |    done | ||||||
|    test "$2" = conftest.file |    test "$2" = conftest.file | ||||||
|    ) |    ) | ||||||
| then | then | ||||||
|  | @ -1941,6 +1966,16 @@ Check your system clock" "$LINENO" 5 | ||||||
| fi | fi | ||||||
| { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 | ||||||
| $as_echo "yes" >&6; } | $as_echo "yes" >&6; } | ||||||
|  | # If we didn't sleep, we still need to ensure time stamps of config.status and | ||||||
|  | # generated files are strictly newer. | ||||||
|  | am_sleep_pid= | ||||||
|  | if grep 'slept: no' conftest.file >/dev/null 2>&1; then | ||||||
|  |   ( sleep 1 ) & | ||||||
|  |   am_sleep_pid=$! | ||||||
|  | fi | ||||||
|  | 
 | ||||||
|  | rm -f conftest.file | ||||||
|  | 
 | ||||||
| test "$program_prefix" != NONE && | test "$program_prefix" != NONE && | ||||||
|   program_transform_name="s&^&$program_prefix&;$program_transform_name" |   program_transform_name="s&^&$program_prefix&;$program_transform_name" | ||||||
| # Use a double $ so make ignores it. | # Use a double $ so make ignores it. | ||||||
|  | @ -1963,12 +1998,12 @@ if test x"${MISSING+set}" != xset; then | ||||||
|   esac |   esac | ||||||
| fi | fi | ||||||
| # Use eval to expand $SHELL | # Use eval to expand $SHELL | ||||||
| if eval "$MISSING --run true"; then | if eval "$MISSING --is-lightweight"; then | ||||||
|   am_missing_run="$MISSING --run " |   am_missing_run="$MISSING " | ||||||
| else | else | ||||||
|   am_missing_run= |   am_missing_run= | ||||||
|   { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`missing' script is too old or missing" >&5 |   { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: 'missing' script is too old or missing" >&5 | ||||||
| $as_echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} | $as_echo "$as_me: WARNING: 'missing' script is too old or missing" >&2;} | ||||||
| fi | fi | ||||||
| 
 | 
 | ||||||
| if test x"${install_sh}" != xset; then | if test x"${install_sh}" != xset; then | ||||||
|  | @ -1980,10 +2015,10 @@ if test x"${install_sh}" != xset; then | ||||||
|   esac |   esac | ||||||
| fi | fi | ||||||
| 
 | 
 | ||||||
| # Installed binaries are usually stripped using `strip' when the user | # Installed binaries are usually stripped using 'strip' when the user | ||||||
| # run `make install-strip'.  However `strip' might not be the right | # run "make install-strip".  However 'strip' might not be the right | ||||||
| # tool to use in cross-compilation environments, therefore Automake | # tool to use in cross-compilation environments, therefore Automake | ||||||
| # will honor the `STRIP' environment variable to overrule this program. | # will honor the 'STRIP' environment variable to overrule this program. | ||||||
| if test "$cross_compiling" != no; then | if test "$cross_compiling" != no; then | ||||||
|   if test -n "$ac_tool_prefix"; then |   if test -n "$ac_tool_prefix"; then | ||||||
|   # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. |   # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. | ||||||
|  | @ -2002,7 +2037,7 @@ do | ||||||
|   IFS=$as_save_IFS |   IFS=$as_save_IFS | ||||||
|   test -z "$as_dir" && as_dir=. |   test -z "$as_dir" && as_dir=. | ||||||
|     for ac_exec_ext in '' $ac_executable_extensions; do |     for ac_exec_ext in '' $ac_executable_extensions; do | ||||||
|   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then |   if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | ||||||
|     ac_cv_prog_STRIP="${ac_tool_prefix}strip" |     ac_cv_prog_STRIP="${ac_tool_prefix}strip" | ||||||
|     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 |     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 | ||||||
|     break 2 |     break 2 | ||||||
|  | @ -2042,7 +2077,7 @@ do | ||||||
|   IFS=$as_save_IFS |   IFS=$as_save_IFS | ||||||
|   test -z "$as_dir" && as_dir=. |   test -z "$as_dir" && as_dir=. | ||||||
|     for ac_exec_ext in '' $ac_executable_extensions; do |     for ac_exec_ext in '' $ac_executable_extensions; do | ||||||
|   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then |   if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | ||||||
|     ac_cv_prog_ac_ct_STRIP="strip" |     ac_cv_prog_ac_ct_STRIP="strip" | ||||||
|     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 |     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 | ||||||
|     break 2 |     break 2 | ||||||
|  | @ -2093,7 +2128,7 @@ do | ||||||
|   test -z "$as_dir" && as_dir=. |   test -z "$as_dir" && as_dir=. | ||||||
|     for ac_prog in mkdir gmkdir; do |     for ac_prog in mkdir gmkdir; do | ||||||
| 	 for ac_exec_ext in '' $ac_executable_extensions; do | 	 for ac_exec_ext in '' $ac_executable_extensions; do | ||||||
| 	   { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; } || continue | 	   as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue | ||||||
| 	   case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( | 	   case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( | ||||||
| 	     'mkdir (GNU coreutils) '* | \ | 	     'mkdir (GNU coreutils) '* | \ | ||||||
| 	     'mkdir (coreutils) '* | \ | 	     'mkdir (coreutils) '* | \ | ||||||
|  | @ -2122,12 +2157,6 @@ fi | ||||||
| { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5 | ||||||
| $as_echo "$MKDIR_P" >&6; } | $as_echo "$MKDIR_P" >&6; } | ||||||
| 
 | 
 | ||||||
| mkdir_p="$MKDIR_P" |  | ||||||
| case $mkdir_p in |  | ||||||
|   [\\/$]* | ?:[\\/]*) ;; |  | ||||||
|   */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; |  | ||||||
| esac |  | ||||||
| 
 |  | ||||||
| for ac_prog in gawk mawk nawk awk | for ac_prog in gawk mawk nawk awk | ||||||
| do | do | ||||||
|   # Extract the first word of "$ac_prog", so it can be a program name with args. |   # Extract the first word of "$ac_prog", so it can be a program name with args. | ||||||
|  | @ -2146,7 +2175,7 @@ do | ||||||
|   IFS=$as_save_IFS |   IFS=$as_save_IFS | ||||||
|   test -z "$as_dir" && as_dir=. |   test -z "$as_dir" && as_dir=. | ||||||
|     for ac_exec_ext in '' $ac_executable_extensions; do |     for ac_exec_ext in '' $ac_executable_extensions; do | ||||||
|   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then |   if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | ||||||
|     ac_cv_prog_AWK="$ac_prog" |     ac_cv_prog_AWK="$ac_prog" | ||||||
|     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 |     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 | ||||||
|     break 2 |     break 2 | ||||||
|  | @ -2210,6 +2239,45 @@ else | ||||||
| fi | fi | ||||||
| rmdir .tst 2>/dev/null | rmdir .tst 2>/dev/null | ||||||
| 
 | 
 | ||||||
|  | # Check whether --enable-silent-rules was given. | ||||||
|  | if test "${enable_silent_rules+set}" = set; then : | ||||||
|  |   enableval=$enable_silent_rules; | ||||||
|  | fi | ||||||
|  | 
 | ||||||
|  | case $enable_silent_rules in # ((( | ||||||
|  |   yes) AM_DEFAULT_VERBOSITY=0;; | ||||||
|  |    no) AM_DEFAULT_VERBOSITY=1;; | ||||||
|  |     *) AM_DEFAULT_VERBOSITY=1;; | ||||||
|  | esac | ||||||
|  | am_make=${MAKE-make} | ||||||
|  | { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5 | ||||||
|  | $as_echo_n "checking whether $am_make supports nested variables... " >&6; } | ||||||
|  | if ${am_cv_make_support_nested_variables+:} false; then : | ||||||
|  |   $as_echo_n "(cached) " >&6 | ||||||
|  | else | ||||||
|  |   if $as_echo 'TRUE=$(BAR$(V)) | ||||||
|  | BAR0=false | ||||||
|  | BAR1=true | ||||||
|  | V=1 | ||||||
|  | am__doit: | ||||||
|  | 	@$(TRUE) | ||||||
|  | .PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then | ||||||
|  |   am_cv_make_support_nested_variables=yes | ||||||
|  | else | ||||||
|  |   am_cv_make_support_nested_variables=no | ||||||
|  | fi | ||||||
|  | fi | ||||||
|  | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5 | ||||||
|  | $as_echo "$am_cv_make_support_nested_variables" >&6; } | ||||||
|  | if test $am_cv_make_support_nested_variables = yes; then | ||||||
|  |     AM_V='$(V)' | ||||||
|  |   AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' | ||||||
|  | else | ||||||
|  |   AM_V=$AM_DEFAULT_VERBOSITY | ||||||
|  |   AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY | ||||||
|  | fi | ||||||
|  | AM_BACKSLASH='\' | ||||||
|  | 
 | ||||||
| if test "`cd $srcdir && pwd`" != "`pwd`"; then | if test "`cd $srcdir && pwd`" != "`pwd`"; then | ||||||
|   # Use -I$(srcdir) only when $(srcdir) != ., so that make's output |   # Use -I$(srcdir) only when $(srcdir) != ., so that make's output | ||||||
|   # is not polluted with repeated "-I." |   # is not polluted with repeated "-I." | ||||||
|  | @ -2260,30 +2328,109 @@ AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} | ||||||
| 
 | 
 | ||||||
| MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} | MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} | ||||||
| 
 | 
 | ||||||
|  | # For better backward compatibility.  To be removed once Automake 1.9.x | ||||||
|  | # dies out for good.  For more background, see: | ||||||
|  | # <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html> | ||||||
|  | # <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html> | ||||||
|  | mkdir_p='$(MKDIR_P)' | ||||||
|  | 
 | ||||||
| # We need awk for the "check" target.  The system "awk" is bad on | # We need awk for the "check" target.  The system "awk" is bad on | ||||||
| # some platforms. | # some platforms. | ||||||
| # Always define AMTAR for backward compatibility. | # Always define AMTAR for backward compatibility.  Yes, it's still used | ||||||
|  | # in the wild :-(  We should find a proper way to deprecate it ... | ||||||
|  | AMTAR='$${TAR-tar}' | ||||||
| 
 | 
 | ||||||
| AMTAR=${AMTAR-"${am_missing_run}tar"} |  | ||||||
| 
 | 
 | ||||||
| am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -' | # We'll loop over all known methods to create a tar archive until one works. | ||||||
|  | _am_tools='gnutar  pax cpio none' | ||||||
|  | 
 | ||||||
|  | am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -' | ||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
|  | # POSIX will say in a future version that running "rm -f" with no argument | ||||||
|  | # is OK; and we want to be able to make that assumption in our Makefile | ||||||
|  | # recipes.  So use an aggressive probe to check that the usage we want is | ||||||
|  | # actually supported "in the wild" to an acceptable degree. | ||||||
|  | # See automake bug#10828. | ||||||
|  | # To make any issue more visible, cause the running configure to be aborted | ||||||
|  | # by default if the 'rm' program in use doesn't match our expectations; the | ||||||
|  | # user can still override this though. | ||||||
|  | if rm -f && rm -fr && rm -rf; then : OK; else | ||||||
|  |   cat >&2 <<'END' | ||||||
|  | Oops! | ||||||
|  | 
 | ||||||
|  | Your 'rm' program seems unable to run without file operands specified | ||||||
|  | on the command line, even when the '-f' option is present.  This is contrary | ||||||
|  | to the behaviour of most rm programs out there, and not conforming with | ||||||
|  | the upcoming POSIX standard: <http://austingroupbugs.net/view.php?id=542> | ||||||
|  | 
 | ||||||
|  | Please tell bug-automake@gnu.org about your system, including the value | ||||||
|  | of your $PATH and any error possibly output before this message.  This | ||||||
|  | can help us improve future automake versions. | ||||||
|  | 
 | ||||||
|  | END | ||||||
|  |   if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then | ||||||
|  |     echo 'Configuration will proceed anyway, since you have set the' >&2 | ||||||
|  |     echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2 | ||||||
|  |     echo >&2 | ||||||
|  |   else | ||||||
|  |     cat >&2 <<'END' | ||||||
|  | Aborting the configuration process, to ensure you take notice of the issue. | ||||||
|  | 
 | ||||||
|  | You can download and install GNU coreutils to get an 'rm' implementation | ||||||
|  | that behaves properly: <http://www.gnu.org/software/coreutils/>. | ||||||
|  | 
 | ||||||
|  | If you want to complete the configuration process using your problematic | ||||||
|  | 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM | ||||||
|  | to "yes", and re-run configure. | ||||||
|  | 
 | ||||||
|  | END | ||||||
|  |     as_fn_error $? "Your 'rm' program is bad, sorry." "$LINENO" 5 | ||||||
|  |   fi | ||||||
|  | fi | ||||||
|  | 
 | ||||||
| 
 | 
 | ||||||
| # Check whether --enable-silent-rules was given. | # Check whether --enable-silent-rules was given. | ||||||
| if test "${enable_silent_rules+set}" = set; then : | if test "${enable_silent_rules+set}" = set; then : | ||||||
|   enableval=$enable_silent_rules; |   enableval=$enable_silent_rules; | ||||||
| fi | fi | ||||||
| 
 | 
 | ||||||
| case $enable_silent_rules in | case $enable_silent_rules in # ((( | ||||||
| yes) AM_DEFAULT_VERBOSITY=0;; |   yes) AM_DEFAULT_VERBOSITY=0;; | ||||||
| no)  AM_DEFAULT_VERBOSITY=1;; |    no) AM_DEFAULT_VERBOSITY=1;; | ||||||
| *)   AM_DEFAULT_VERBOSITY=0;; |     *) AM_DEFAULT_VERBOSITY=0;; | ||||||
| esac | esac | ||||||
|  | am_make=${MAKE-make} | ||||||
|  | { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5 | ||||||
|  | $as_echo_n "checking whether $am_make supports nested variables... " >&6; } | ||||||
|  | if ${am_cv_make_support_nested_variables+:} false; then : | ||||||
|  |   $as_echo_n "(cached) " >&6 | ||||||
|  | else | ||||||
|  |   if $as_echo 'TRUE=$(BAR$(V)) | ||||||
|  | BAR0=false | ||||||
|  | BAR1=true | ||||||
|  | V=1 | ||||||
|  | am__doit: | ||||||
|  | 	@$(TRUE) | ||||||
|  | .PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then | ||||||
|  |   am_cv_make_support_nested_variables=yes | ||||||
|  | else | ||||||
|  |   am_cv_make_support_nested_variables=no | ||||||
|  | fi | ||||||
|  | fi | ||||||
|  | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5 | ||||||
|  | $as_echo "$am_cv_make_support_nested_variables" >&6; } | ||||||
|  | if test $am_cv_make_support_nested_variables = yes; then | ||||||
|  |     AM_V='$(V)' | ||||||
|  |   AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' | ||||||
|  | else | ||||||
|  |   AM_V=$AM_DEFAULT_VERBOSITY | ||||||
|  |   AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY | ||||||
|  | fi | ||||||
| AM_BACKSLASH='\' | AM_BACKSLASH='\' | ||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
|  | @ -2310,7 +2457,7 @@ do | ||||||
|   IFS=$as_save_IFS |   IFS=$as_save_IFS | ||||||
|   test -z "$as_dir" && as_dir=. |   test -z "$as_dir" && as_dir=. | ||||||
|     for ac_exec_ext in '' $ac_executable_extensions; do |     for ac_exec_ext in '' $ac_executable_extensions; do | ||||||
|   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then |   if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | ||||||
|     ac_cv_prog_CC="${ac_tool_prefix}gcc" |     ac_cv_prog_CC="${ac_tool_prefix}gcc" | ||||||
|     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 |     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 | ||||||
|     break 2 |     break 2 | ||||||
|  | @ -2350,7 +2497,7 @@ do | ||||||
|   IFS=$as_save_IFS |   IFS=$as_save_IFS | ||||||
|   test -z "$as_dir" && as_dir=. |   test -z "$as_dir" && as_dir=. | ||||||
|     for ac_exec_ext in '' $ac_executable_extensions; do |     for ac_exec_ext in '' $ac_executable_extensions; do | ||||||
|   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then |   if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | ||||||
|     ac_cv_prog_ac_ct_CC="gcc" |     ac_cv_prog_ac_ct_CC="gcc" | ||||||
|     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 |     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 | ||||||
|     break 2 |     break 2 | ||||||
|  | @ -2403,7 +2550,7 @@ do | ||||||
|   IFS=$as_save_IFS |   IFS=$as_save_IFS | ||||||
|   test -z "$as_dir" && as_dir=. |   test -z "$as_dir" && as_dir=. | ||||||
|     for ac_exec_ext in '' $ac_executable_extensions; do |     for ac_exec_ext in '' $ac_executable_extensions; do | ||||||
|   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then |   if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | ||||||
|     ac_cv_prog_CC="${ac_tool_prefix}cc" |     ac_cv_prog_CC="${ac_tool_prefix}cc" | ||||||
|     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 |     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 | ||||||
|     break 2 |     break 2 | ||||||
|  | @ -2444,7 +2591,7 @@ do | ||||||
|   IFS=$as_save_IFS |   IFS=$as_save_IFS | ||||||
|   test -z "$as_dir" && as_dir=. |   test -z "$as_dir" && as_dir=. | ||||||
|     for ac_exec_ext in '' $ac_executable_extensions; do |     for ac_exec_ext in '' $ac_executable_extensions; do | ||||||
|   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then |   if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | ||||||
|     if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then |     if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then | ||||||
|        ac_prog_rejected=yes |        ac_prog_rejected=yes | ||||||
|        continue |        continue | ||||||
|  | @ -2502,7 +2649,7 @@ do | ||||||
|   IFS=$as_save_IFS |   IFS=$as_save_IFS | ||||||
|   test -z "$as_dir" && as_dir=. |   test -z "$as_dir" && as_dir=. | ||||||
|     for ac_exec_ext in '' $ac_executable_extensions; do |     for ac_exec_ext in '' $ac_executable_extensions; do | ||||||
|   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then |   if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | ||||||
|     ac_cv_prog_CC="$ac_tool_prefix$ac_prog" |     ac_cv_prog_CC="$ac_tool_prefix$ac_prog" | ||||||
|     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 |     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 | ||||||
|     break 2 |     break 2 | ||||||
|  | @ -2546,7 +2693,7 @@ do | ||||||
|   IFS=$as_save_IFS |   IFS=$as_save_IFS | ||||||
|   test -z "$as_dir" && as_dir=. |   test -z "$as_dir" && as_dir=. | ||||||
|     for ac_exec_ext in '' $ac_executable_extensions; do |     for ac_exec_ext in '' $ac_executable_extensions; do | ||||||
|   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then |   if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | ||||||
|     ac_cv_prog_ac_ct_CC="$ac_prog" |     ac_cv_prog_ac_ct_CC="$ac_prog" | ||||||
|     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 |     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 | ||||||
|     break 2 |     break 2 | ||||||
|  | @ -2589,7 +2736,7 @@ fi | ||||||
| test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 | test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 | ||||||
| $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} | $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} | ||||||
| as_fn_error $? "no acceptable C compiler found in \$PATH | as_fn_error $? "no acceptable C compiler found in \$PATH | ||||||
| See \`config.log' for more details" "$LINENO" 5 ; } | See \`config.log' for more details" "$LINENO" 5; } | ||||||
| 
 | 
 | ||||||
| # Provide some information about the compiler. | # Provide some information about the compiler. | ||||||
| $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 | $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 | ||||||
|  | @ -2704,7 +2851,7 @@ sed 's/^/| /' conftest.$ac_ext >&5 | ||||||
| { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 | { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 | ||||||
| $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} | $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} | ||||||
| as_fn_error 77 "C compiler cannot create executables | as_fn_error 77 "C compiler cannot create executables | ||||||
| See \`config.log' for more details" "$LINENO" 5 ; } | See \`config.log' for more details" "$LINENO" 5; } | ||||||
| else | else | ||||||
|   { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 |   { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 | ||||||
| $as_echo "yes" >&6; } | $as_echo "yes" >&6; } | ||||||
|  | @ -2747,7 +2894,7 @@ else | ||||||
|   { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 |   { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 | ||||||
| $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} | $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} | ||||||
| as_fn_error $? "cannot compute suffix of executables: cannot compile and link | as_fn_error $? "cannot compute suffix of executables: cannot compile and link | ||||||
| See \`config.log' for more details" "$LINENO" 5 ; } | See \`config.log' for more details" "$LINENO" 5; } | ||||||
| fi | fi | ||||||
| rm -f conftest conftest$ac_cv_exeext | rm -f conftest conftest$ac_cv_exeext | ||||||
| { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 | ||||||
|  | @ -2806,7 +2953,7 @@ $as_echo "$ac_try_echo"; } >&5 | ||||||
| $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} | $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} | ||||||
| as_fn_error $? "cannot run C compiled programs. | as_fn_error $? "cannot run C compiled programs. | ||||||
| If you meant to cross compile, use \`--host'. | If you meant to cross compile, use \`--host'. | ||||||
| See \`config.log' for more details" "$LINENO" 5 ; } | See \`config.log' for more details" "$LINENO" 5; } | ||||||
|     fi |     fi | ||||||
|   fi |   fi | ||||||
| fi | fi | ||||||
|  | @ -2858,7 +3005,7 @@ sed 's/^/| /' conftest.$ac_ext >&5 | ||||||
| { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 | { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 | ||||||
| $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} | $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} | ||||||
| as_fn_error $? "cannot compute suffix of object files: cannot compile | as_fn_error $? "cannot compute suffix of object files: cannot compile | ||||||
| See \`config.log' for more details" "$LINENO" 5 ; } | See \`config.log' for more details" "$LINENO" 5; } | ||||||
| fi | fi | ||||||
| rm -f conftest.$ac_cv_objext conftest.$ac_ext | rm -f conftest.$ac_cv_objext conftest.$ac_ext | ||||||
| fi | fi | ||||||
|  | @ -2992,8 +3139,7 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext | ||||||
| /* end confdefs.h.  */ | /* end confdefs.h.  */ | ||||||
| #include <stdarg.h> | #include <stdarg.h> | ||||||
| #include <stdio.h> | #include <stdio.h> | ||||||
| #include <sys/types.h> | struct stat; | ||||||
| #include <sys/stat.h> |  | ||||||
| /* Most of the following tests are stolen from RCS 5.7's src/conf.sh.  */ | /* Most of the following tests are stolen from RCS 5.7's src/conf.sh.  */ | ||||||
| struct buf { int x; }; | struct buf { int x; }; | ||||||
| FILE * (*rcsopen) (struct buf *, struct stat *, int); | FILE * (*rcsopen) (struct buf *, struct stat *, int); | ||||||
|  | @ -3078,6 +3224,65 @@ ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' | ||||||
| ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' | ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' | ||||||
| ac_compiler_gnu=$ac_cv_c_compiler_gnu | ac_compiler_gnu=$ac_cv_c_compiler_gnu | ||||||
| 
 | 
 | ||||||
|  | ac_ext=c | ||||||
|  | ac_cpp='$CPP $CPPFLAGS' | ||||||
|  | ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' | ||||||
|  | ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' | ||||||
|  | ac_compiler_gnu=$ac_cv_c_compiler_gnu | ||||||
|  | { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC understands -c and -o together" >&5 | ||||||
|  | $as_echo_n "checking whether $CC understands -c and -o together... " >&6; } | ||||||
|  | if ${am_cv_prog_cc_c_o+:} false; then : | ||||||
|  |   $as_echo_n "(cached) " >&6 | ||||||
|  | else | ||||||
|  |   cat confdefs.h - <<_ACEOF >conftest.$ac_ext | ||||||
|  | /* end confdefs.h.  */ | ||||||
|  | 
 | ||||||
|  | int | ||||||
|  | main () | ||||||
|  | { | ||||||
|  | 
 | ||||||
|  |   ; | ||||||
|  |   return 0; | ||||||
|  | } | ||||||
|  | _ACEOF | ||||||
|  |   # Make sure it works both with $CC and with simple cc. | ||||||
|  |   # Following AC_PROG_CC_C_O, we do the test twice because some | ||||||
|  |   # compilers refuse to overwrite an existing .o file with -o, | ||||||
|  |   # though they will create one. | ||||||
|  |   am_cv_prog_cc_c_o=yes | ||||||
|  |   for am_i in 1 2; do | ||||||
|  |     if { echo "$as_me:$LINENO: $CC -c conftest.$ac_ext -o conftest2.$ac_objext" >&5 | ||||||
|  |    ($CC -c conftest.$ac_ext -o conftest2.$ac_objext) >&5 2>&5 | ||||||
|  |    ac_status=$? | ||||||
|  |    echo "$as_me:$LINENO: \$? = $ac_status" >&5 | ||||||
|  |    (exit $ac_status); } \ | ||||||
|  |          && test -f conftest2.$ac_objext; then | ||||||
|  |       : OK | ||||||
|  |     else | ||||||
|  |       am_cv_prog_cc_c_o=no | ||||||
|  |       break | ||||||
|  |     fi | ||||||
|  |   done | ||||||
|  |   rm -f core conftest* | ||||||
|  |   unset am_i | ||||||
|  | fi | ||||||
|  | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_cc_c_o" >&5 | ||||||
|  | $as_echo "$am_cv_prog_cc_c_o" >&6; } | ||||||
|  | if test "$am_cv_prog_cc_c_o" != yes; then | ||||||
|  |    # Losing compiler, so override with the script. | ||||||
|  |    # FIXME: It is wrong to rewrite CC. | ||||||
|  |    # But if we don't then we get into trouble of one sort or another. | ||||||
|  |    # A longer-term fix would be to have automake use am__CC in this case, | ||||||
|  |    # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" | ||||||
|  |    CC="$am_aux_dir/compile $CC" | ||||||
|  | fi | ||||||
|  | ac_ext=c | ||||||
|  | ac_cpp='$CPP $CPPFLAGS' | ||||||
|  | ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' | ||||||
|  | ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' | ||||||
|  | ac_compiler_gnu=$ac_cv_c_compiler_gnu | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
| if test -n "$ac_tool_prefix"; then | if test -n "$ac_tool_prefix"; then | ||||||
|   # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. |   # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. | ||||||
| set dummy ${ac_tool_prefix}ranlib; ac_word=$2 | set dummy ${ac_tool_prefix}ranlib; ac_word=$2 | ||||||
|  | @ -3095,7 +3300,7 @@ do | ||||||
|   IFS=$as_save_IFS |   IFS=$as_save_IFS | ||||||
|   test -z "$as_dir" && as_dir=. |   test -z "$as_dir" && as_dir=. | ||||||
|     for ac_exec_ext in '' $ac_executable_extensions; do |     for ac_exec_ext in '' $ac_executable_extensions; do | ||||||
|   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then |   if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | ||||||
|     ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" |     ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" | ||||||
|     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 |     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 | ||||||
|     break 2 |     break 2 | ||||||
|  | @ -3135,7 +3340,7 @@ do | ||||||
|   IFS=$as_save_IFS |   IFS=$as_save_IFS | ||||||
|   test -z "$as_dir" && as_dir=. |   test -z "$as_dir" && as_dir=. | ||||||
|     for ac_exec_ext in '' $ac_executable_extensions; do |     for ac_exec_ext in '' $ac_executable_extensions; do | ||||||
|   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then |   if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | ||||||
|     ac_cv_prog_ac_ct_RANLIB="ranlib" |     ac_cv_prog_ac_ct_RANLIB="ranlib" | ||||||
|     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 |     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 | ||||||
|     break 2 |     break 2 | ||||||
|  | @ -3192,7 +3397,7 @@ do | ||||||
|     for ac_prog in sed gsed; do |     for ac_prog in sed gsed; do | ||||||
|     for ac_exec_ext in '' $ac_executable_extensions; do |     for ac_exec_ext in '' $ac_executable_extensions; do | ||||||
|       ac_path_SED="$as_dir/$ac_prog$ac_exec_ext" |       ac_path_SED="$as_dir/$ac_prog$ac_exec_ext" | ||||||
|       { test -f "$ac_path_SED" && $as_test_x "$ac_path_SED"; } || continue |       as_fn_executable_p "$ac_path_SED" || continue | ||||||
| # Check for GNU ac_path_SED and select it if it is found. | # Check for GNU ac_path_SED and select it if it is found. | ||||||
|   # Check for GNU $ac_path_SED |   # Check for GNU $ac_path_SED | ||||||
| case `"$ac_path_SED" --version 2>&1` in | case `"$ac_path_SED" --version 2>&1` in | ||||||
|  | @ -3257,7 +3462,7 @@ do | ||||||
|   IFS=$as_save_IFS |   IFS=$as_save_IFS | ||||||
|   test -z "$as_dir" && as_dir=. |   test -z "$as_dir" && as_dir=. | ||||||
|     for ac_exec_ext in '' $ac_executable_extensions; do |     for ac_exec_ext in '' $ac_executable_extensions; do | ||||||
|   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then |   if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | ||||||
|     ac_cv_path_RM="$as_dir/$ac_word$ac_exec_ext" |     ac_cv_path_RM="$as_dir/$ac_word$ac_exec_ext" | ||||||
|     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 |     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 | ||||||
|     break 2 |     break 2 | ||||||
|  | @ -3297,7 +3502,7 @@ do | ||||||
|   IFS=$as_save_IFS |   IFS=$as_save_IFS | ||||||
|   test -z "$as_dir" && as_dir=. |   test -z "$as_dir" && as_dir=. | ||||||
|     for ac_exec_ext in '' $ac_executable_extensions; do |     for ac_exec_ext in '' $ac_executable_extensions; do | ||||||
|   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then |   if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | ||||||
|     ac_cv_prog_STRIP="${ac_tool_prefix}strip" |     ac_cv_prog_STRIP="${ac_tool_prefix}strip" | ||||||
|     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 |     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 | ||||||
|     break 2 |     break 2 | ||||||
|  | @ -3337,7 +3542,7 @@ do | ||||||
|   IFS=$as_save_IFS |   IFS=$as_save_IFS | ||||||
|   test -z "$as_dir" && as_dir=. |   test -z "$as_dir" && as_dir=. | ||||||
|     for ac_exec_ext in '' $ac_executable_extensions; do |     for ac_exec_ext in '' $ac_executable_extensions; do | ||||||
|   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then |   if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | ||||||
|     ac_cv_prog_ac_ct_STRIP="strip" |     ac_cv_prog_ac_ct_STRIP="strip" | ||||||
|     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 |     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 | ||||||
|     break 2 |     break 2 | ||||||
|  | @ -3389,7 +3594,7 @@ do | ||||||
|   IFS=$as_save_IFS |   IFS=$as_save_IFS | ||||||
|   test -z "$as_dir" && as_dir=. |   test -z "$as_dir" && as_dir=. | ||||||
|     for ac_exec_ext in '' $ac_executable_extensions; do |     for ac_exec_ext in '' $ac_executable_extensions; do | ||||||
|   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then |   if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | ||||||
|     ac_cv_prog_WINDRES="${ac_tool_prefix}windres" |     ac_cv_prog_WINDRES="${ac_tool_prefix}windres" | ||||||
|     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 |     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 | ||||||
|     break 2 |     break 2 | ||||||
|  | @ -3429,7 +3634,7 @@ do | ||||||
|   IFS=$as_save_IFS |   IFS=$as_save_IFS | ||||||
|   test -z "$as_dir" && as_dir=. |   test -z "$as_dir" && as_dir=. | ||||||
|     for ac_exec_ext in '' $ac_executable_extensions; do |     for ac_exec_ext in '' $ac_executable_extensions; do | ||||||
|   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then |   if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | ||||||
|     ac_cv_prog_ac_ct_WINDRES="windres" |     ac_cv_prog_ac_ct_WINDRES="windres" | ||||||
|     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 |     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 | ||||||
|     break 2 |     break 2 | ||||||
|  | @ -3751,6 +3956,14 @@ LIBOBJS=$ac_libobjs | ||||||
| LTLIBOBJS=$ac_ltlibobjs | LTLIBOBJS=$ac_ltlibobjs | ||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
|  | { $as_echo "$as_me:${as_lineno-$LINENO}: checking that generated files are newer than configure" >&5 | ||||||
|  | $as_echo_n "checking that generated files are newer than configure... " >&6; } | ||||||
|  |    if test -n "$am_sleep_pid"; then | ||||||
|  |      # Hide warnings about reused PIDs. | ||||||
|  |      wait $am_sleep_pid 2>/dev/null | ||||||
|  |    fi | ||||||
|  |    { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 | ||||||
|  | $as_echo "done" >&6; } | ||||||
|  if test -n "$EXEEXT"; then |  if test -n "$EXEEXT"; then | ||||||
|   am__EXEEXT_TRUE= |   am__EXEEXT_TRUE= | ||||||
|   am__EXEEXT_FALSE='#' |   am__EXEEXT_FALSE='#' | ||||||
|  | @ -4057,16 +4270,16 @@ if (echo >conf$$.file) 2>/dev/null; then | ||||||
|     # ... but there are two gotchas: |     # ... but there are two gotchas: | ||||||
|     # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. |     # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. | ||||||
|     # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. |     # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. | ||||||
|     # In both cases, we have to default to `cp -p'. |     # In both cases, we have to default to `cp -pR'. | ||||||
|     ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || |     ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || | ||||||
|       as_ln_s='cp -p' |       as_ln_s='cp -pR' | ||||||
|   elif ln conf$$.file conf$$ 2>/dev/null; then |   elif ln conf$$.file conf$$ 2>/dev/null; then | ||||||
|     as_ln_s=ln |     as_ln_s=ln | ||||||
|   else |   else | ||||||
|     as_ln_s='cp -p' |     as_ln_s='cp -pR' | ||||||
|   fi |   fi | ||||||
| else | else | ||||||
|   as_ln_s='cp -p' |   as_ln_s='cp -pR' | ||||||
| fi | fi | ||||||
| rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file | rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file | ||||||
| rmdir conf$$.dir 2>/dev/null | rmdir conf$$.dir 2>/dev/null | ||||||
|  | @ -4126,28 +4339,16 @@ else | ||||||
|   as_mkdir_p=false |   as_mkdir_p=false | ||||||
| fi | fi | ||||||
| 
 | 
 | ||||||
| if test -x / >/dev/null 2>&1; then | 
 | ||||||
|   as_test_x='test -x' | # as_fn_executable_p FILE | ||||||
| else | # ----------------------- | ||||||
|   if ls -dL / >/dev/null 2>&1; then | # Test if FILE is an executable regular file. | ||||||
|     as_ls_L_option=L | as_fn_executable_p () | ||||||
|   else | { | ||||||
|     as_ls_L_option= |   test -f "$1" && test -x "$1" | ||||||
|   fi | } # as_fn_executable_p | ||||||
|   as_test_x=' | as_test_x='test -x' | ||||||
|     eval sh -c '\'' | as_executable_p=as_fn_executable_p | ||||||
|       if test -d "$1"; then |  | ||||||
| 	test -d "$1/."; |  | ||||||
|       else |  | ||||||
| 	case $1 in #( |  | ||||||
| 	-*)set "./$1";; |  | ||||||
| 	esac; |  | ||||||
| 	case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #(( |  | ||||||
| 	???[sx]*):;;*)false;;esac;fi |  | ||||||
|     '\'' sh |  | ||||||
|   ' |  | ||||||
| fi |  | ||||||
| as_executable_p=$as_test_x |  | ||||||
| 
 | 
 | ||||||
| # Sed expression to map a string onto a valid CPP name. | # Sed expression to map a string onto a valid CPP name. | ||||||
| as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" | as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" | ||||||
|  | @ -4169,7 +4370,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 | ||||||
| # values after options handling. | # values after options handling. | ||||||
| ac_log=" | ac_log=" | ||||||
| This file was extended by rufus $as_me 1.5.0, which was | This file was extended by rufus $as_me 1.5.0, which was | ||||||
| generated by GNU Autoconf 2.68.  Invocation command line was | generated by GNU Autoconf 2.69.  Invocation command line was | ||||||
| 
 | 
 | ||||||
|   CONFIG_FILES    = $CONFIG_FILES |   CONFIG_FILES    = $CONFIG_FILES | ||||||
|   CONFIG_HEADERS  = $CONFIG_HEADERS |   CONFIG_HEADERS  = $CONFIG_HEADERS | ||||||
|  | @ -4223,10 +4424,10 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 | ||||||
| ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" | ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" | ||||||
| ac_cs_version="\\ | ac_cs_version="\\ | ||||||
| rufus config.status 1.5.0 | rufus config.status 1.5.0 | ||||||
| configured by $0, generated by GNU Autoconf 2.68, | configured by $0, generated by GNU Autoconf 2.69, | ||||||
|   with options \\"\$ac_cs_config\\" |   with options \\"\$ac_cs_config\\" | ||||||
| 
 | 
 | ||||||
| Copyright (C) 2010 Free Software Foundation, Inc. | Copyright (C) 2012 Free Software Foundation, Inc. | ||||||
| This config.status script is free software; the Free Software Foundation | This config.status script is free software; the Free Software Foundation | ||||||
| gives unlimited permission to copy, distribute and modify it." | gives unlimited permission to copy, distribute and modify it." | ||||||
| 
 | 
 | ||||||
|  | @ -4306,7 +4507,7 @@ fi | ||||||
| _ACEOF | _ACEOF | ||||||
| cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 | cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 | ||||||
| if \$ac_cs_recheck; then | if \$ac_cs_recheck; then | ||||||
|   set X '$SHELL' '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion |   set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion | ||||||
|   shift |   shift | ||||||
|   \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 |   \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 | ||||||
|   CONFIG_SHELL='$SHELL' |   CONFIG_SHELL='$SHELL' | ||||||
|  | @ -4345,7 +4546,7 @@ do | ||||||
|     "src/libcdio/driver/Makefile") CONFIG_FILES="$CONFIG_FILES src/libcdio/driver/Makefile" ;; |     "src/libcdio/driver/Makefile") CONFIG_FILES="$CONFIG_FILES src/libcdio/driver/Makefile" ;; | ||||||
|     "res/localization/Makefile") CONFIG_FILES="$CONFIG_FILES res/localization/Makefile" ;; |     "res/localization/Makefile") CONFIG_FILES="$CONFIG_FILES res/localization/Makefile" ;; | ||||||
| 
 | 
 | ||||||
|   *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5 ;; |   *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; | ||||||
|   esac |   esac | ||||||
| done | done | ||||||
| 
 | 
 | ||||||
|  | @ -4553,7 +4754,7 @@ do | ||||||
|   esac |   esac | ||||||
|   case $ac_mode$ac_tag in |   case $ac_mode$ac_tag in | ||||||
|   :[FHL]*:*);; |   :[FHL]*:*);; | ||||||
|   :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5 ;; |   :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; | ||||||
|   :[FH]-) ac_tag=-:-;; |   :[FH]-) ac_tag=-:-;; | ||||||
|   :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; |   :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; | ||||||
|   esac |   esac | ||||||
|  | @ -4581,7 +4782,7 @@ do | ||||||
| 	   [\\/$]*) false;; | 	   [\\/$]*) false;; | ||||||
| 	   *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; | 	   *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; | ||||||
| 	   esac || | 	   esac || | ||||||
| 	   as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5 ;; | 	   as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; | ||||||
|       esac |       esac | ||||||
|       case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac |       case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac | ||||||
|       as_fn_append ac_file_inputs " '$ac_f'" |       as_fn_append ac_file_inputs " '$ac_f'" | ||||||
|  |  | ||||||
							
								
								
									
										413
									
								
								missing
									
										
									
									
									
								
							
							
						
						
									
										413
									
								
								missing
									
										
									
									
									
								
							|  | @ -1,11 +1,10 @@ | ||||||
| #! /bin/sh | #! /bin/sh | ||||||
| # Common stub for a few missing GNU programs while installing. | # Common wrapper for a few potentially missing GNU programs. | ||||||
| 
 | 
 | ||||||
| scriptversion=2009-04-28.21; # UTC | scriptversion=2013-10-28.13; # UTC | ||||||
| 
 | 
 | ||||||
| # Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006, | # Copyright (C) 1996-2013 Free Software Foundation, Inc. | ||||||
| # 2008, 2009 Free Software Foundation, Inc. | # Originally written by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996. | ||||||
| # Originally by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996. |  | ||||||
| 
 | 
 | ||||||
| # This program is free software; you can redistribute it and/or modify | # This program is free software; you can redistribute it and/or modify | ||||||
| # it under the terms of the GNU General Public License as published by | # it under the terms of the GNU General Public License as published by | ||||||
|  | @ -26,69 +25,40 @@ scriptversion=2009-04-28.21; # UTC | ||||||
| # the same distribution terms that you use for the rest of that program. | # the same distribution terms that you use for the rest of that program. | ||||||
| 
 | 
 | ||||||
| if test $# -eq 0; then | if test $# -eq 0; then | ||||||
|   echo 1>&2 "Try \`$0 --help' for more information" |   echo 1>&2 "Try '$0 --help' for more information" | ||||||
|   exit 1 |   exit 1 | ||||||
| fi | fi | ||||||
| 
 | 
 | ||||||
| run=: |  | ||||||
| sed_output='s/.* --output[ =]\([^ ]*\).*/\1/p' |  | ||||||
| sed_minuso='s/.* -o \([^ ]*\).*/\1/p' |  | ||||||
| 
 |  | ||||||
| # In the cases where this matters, `missing' is being run in the |  | ||||||
| # srcdir already. |  | ||||||
| if test -f configure.ac; then |  | ||||||
|   configure_ac=configure.ac |  | ||||||
| else |  | ||||||
|   configure_ac=configure.in |  | ||||||
| fi |  | ||||||
| 
 |  | ||||||
| msg="missing on your system" |  | ||||||
| 
 |  | ||||||
| case $1 in | case $1 in | ||||||
| --run) | 
 | ||||||
|   # Try to run requested program, and just exit if it succeeds. |   --is-lightweight) | ||||||
|   run= |     # Used by our autoconf macros to check whether the available missing | ||||||
|  |     # script is modern enough. | ||||||
|  |     exit 0 | ||||||
|  |     ;; | ||||||
|  | 
 | ||||||
|  |   --run) | ||||||
|  |     # Back-compat with the calling convention used by older automake. | ||||||
|     shift |     shift | ||||||
|   "$@" && exit 0 |  | ||||||
|   # Exit code 63 means version mismatch.  This often happens |  | ||||||
|   # when the user try to use an ancient version of a tool on |  | ||||||
|   # a file that requires a minimum version.  In this case we |  | ||||||
|   # we should proceed has if the program had been absent, or |  | ||||||
|   # if --run hadn't been passed. |  | ||||||
|   if test $? = 63; then |  | ||||||
|     run=: |  | ||||||
|     msg="probably too old" |  | ||||||
|   fi |  | ||||||
|     ;; |     ;; | ||||||
| 
 | 
 | ||||||
|   -h|--h|--he|--hel|--help) |   -h|--h|--he|--hel|--help) | ||||||
|     echo "\ |     echo "\ | ||||||
| $0 [OPTION]... PROGRAM [ARGUMENT]... | $0 [OPTION]... PROGRAM [ARGUMENT]... | ||||||
| 
 | 
 | ||||||
| Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an | Run 'PROGRAM [ARGUMENT]...', returning a proper advice when this fails due | ||||||
| error status if there is no known handling for PROGRAM. | to PROGRAM being missing or too old. | ||||||
| 
 | 
 | ||||||
| Options: | Options: | ||||||
|   -h, --help      display this help and exit |   -h, --help      display this help and exit | ||||||
|   -v, --version   output version information and exit |   -v, --version   output version information and exit | ||||||
|   --run           try to run the given command, and emulate it if it fails |  | ||||||
| 
 | 
 | ||||||
| Supported PROGRAM values: | Supported PROGRAM values: | ||||||
|   aclocal      touch file \`aclocal.m4' |   aclocal   autoconf  autoheader   autom4te  automake  makeinfo | ||||||
|   autoconf     touch file \`configure' |   bison     yacc      flex         lex       help2man | ||||||
|   autoheader   touch file \`config.h.in' |  | ||||||
|   autom4te     touch the output file, or create a stub one |  | ||||||
|   automake     touch all \`Makefile.in' files |  | ||||||
|   bison        create \`y.tab.[ch]', if possible, from existing .[ch] |  | ||||||
|   flex         create \`lex.yy.c', if possible, from existing .c |  | ||||||
|   help2man     touch the output file |  | ||||||
|   lex          create \`lex.yy.c', if possible, from existing .c |  | ||||||
|   makeinfo     touch the output file |  | ||||||
|   tar          try tar, gnutar, gtar, then tar without non-portable flags |  | ||||||
|   yacc         create \`y.tab.[ch]', if possible, from existing .[ch] |  | ||||||
| 
 | 
 | ||||||
| Version suffixes to PROGRAM as well as the prefixes \`gnu-', \`gnu', and | Version suffixes to PROGRAM as well as the prefixes 'gnu-', 'gnu', and | ||||||
| \`g' are ignored when checking the name. | 'g' are ignored when checking the name. | ||||||
| 
 | 
 | ||||||
| Send bug reports to <bug-automake@gnu.org>." | Send bug reports to <bug-automake@gnu.org>." | ||||||
|     exit $? |     exit $? | ||||||
|  | @ -100,272 +70,141 @@ Send bug reports to <bug-automake@gnu.org>." | ||||||
|     ;; |     ;; | ||||||
| 
 | 
 | ||||||
|   -*) |   -*) | ||||||
|     echo 1>&2 "$0: Unknown \`$1' option" |     echo 1>&2 "$0: unknown '$1' option" | ||||||
|     echo 1>&2 "Try \`$0 --help' for more information" |     echo 1>&2 "Try '$0 --help' for more information" | ||||||
|     exit 1 |     exit 1 | ||||||
|     ;; |     ;; | ||||||
| 
 | 
 | ||||||
| esac | esac | ||||||
| 
 | 
 | ||||||
| # normalize program name to check for. | # Run the given program, remember its exit status. | ||||||
| program=`echo "$1" | sed ' | "$@"; st=$? | ||||||
|  | 
 | ||||||
|  | # If it succeeded, we are done. | ||||||
|  | test $st -eq 0 && exit 0 | ||||||
|  | 
 | ||||||
|  | # Also exit now if we it failed (or wasn't found), and '--version' was | ||||||
|  | # passed; such an option is passed most likely to detect whether the | ||||||
|  | # program is present and works. | ||||||
|  | case $2 in --version|--help) exit $st;; esac | ||||||
|  | 
 | ||||||
|  | # Exit code 63 means version mismatch.  This often happens when the user | ||||||
|  | # tries to use an ancient version of a tool on a file that requires a | ||||||
|  | # minimum version. | ||||||
|  | if test $st -eq 63; then | ||||||
|  |   msg="probably too old" | ||||||
|  | elif test $st -eq 127; then | ||||||
|  |   # Program was missing. | ||||||
|  |   msg="missing on your system" | ||||||
|  | else | ||||||
|  |   # Program was found and executed, but failed.  Give up. | ||||||
|  |   exit $st | ||||||
|  | fi | ||||||
|  | 
 | ||||||
|  | perl_URL=http://www.perl.org/ | ||||||
|  | flex_URL=http://flex.sourceforge.net/ | ||||||
|  | gnu_software_URL=http://www.gnu.org/software | ||||||
|  | 
 | ||||||
|  | program_details () | ||||||
|  | { | ||||||
|  |   case $1 in | ||||||
|  |     aclocal|automake) | ||||||
|  |       echo "The '$1' program is part of the GNU Automake package:" | ||||||
|  |       echo "<$gnu_software_URL/automake>" | ||||||
|  |       echo "It also requires GNU Autoconf, GNU m4 and Perl in order to run:" | ||||||
|  |       echo "<$gnu_software_URL/autoconf>" | ||||||
|  |       echo "<$gnu_software_URL/m4/>" | ||||||
|  |       echo "<$perl_URL>" | ||||||
|  |       ;; | ||||||
|  |     autoconf|autom4te|autoheader) | ||||||
|  |       echo "The '$1' program is part of the GNU Autoconf package:" | ||||||
|  |       echo "<$gnu_software_URL/autoconf/>" | ||||||
|  |       echo "It also requires GNU m4 and Perl in order to run:" | ||||||
|  |       echo "<$gnu_software_URL/m4/>" | ||||||
|  |       echo "<$perl_URL>" | ||||||
|  |       ;; | ||||||
|  |   esac | ||||||
|  | } | ||||||
|  | 
 | ||||||
|  | give_advice () | ||||||
|  | { | ||||||
|  |   # Normalize program name to check for. | ||||||
|  |   normalized_program=`echo "$1" | sed ' | ||||||
|     s/^gnu-//; t |     s/^gnu-//; t | ||||||
|     s/^gnu//; t |     s/^gnu//; t | ||||||
|     s/^g//; t'` |     s/^g//; t'` | ||||||
| 
 | 
 | ||||||
| # Now exit if we have it, but it failed.  Also exit now if we |   printf '%s\n' "'$1' is $msg." | ||||||
| # don't have it and --version was passed (most likely to detect |  | ||||||
| # the program).  This is about non-GNU programs, so use $1 not |  | ||||||
| # $program. |  | ||||||
| case $1 in |  | ||||||
|   lex*|yacc*) |  | ||||||
|     # Not GNU programs, they don't have --version. |  | ||||||
|     ;; |  | ||||||
| 
 |  | ||||||
|   tar*) |  | ||||||
|     if test -n "$run"; then |  | ||||||
|        echo 1>&2 "ERROR: \`tar' requires --run" |  | ||||||
|        exit 1 |  | ||||||
|     elif test "x$2" = "x--version" || test "x$2" = "x--help"; then |  | ||||||
|        exit 1 |  | ||||||
|     fi |  | ||||||
|     ;; |  | ||||||
| 
 |  | ||||||
|   *) |  | ||||||
|     if test -z "$run" && ($1 --version) > /dev/null 2>&1; then |  | ||||||
|        # We have it, but it failed. |  | ||||||
|        exit 1 |  | ||||||
|     elif test "x$2" = "x--version" || test "x$2" = "x--help"; then |  | ||||||
|        # Could not run --version or --help.  This is probably someone |  | ||||||
|        # running `$TOOL --version' or `$TOOL --help' to check whether |  | ||||||
|        # $TOOL exists and not knowing $TOOL uses missing. |  | ||||||
|        exit 1 |  | ||||||
|     fi |  | ||||||
|     ;; |  | ||||||
| esac |  | ||||||
| 
 |  | ||||||
| # If it does not exist, or fails to run (possibly an outdated version), |  | ||||||
| # try to emulate it. |  | ||||||
| case $program in |  | ||||||
|   aclocal*) |  | ||||||
|     echo 1>&2 "\ |  | ||||||
| WARNING: \`$1' is $msg.  You should only need it if |  | ||||||
|          you modified \`acinclude.m4' or \`${configure_ac}'.  You might want |  | ||||||
|          to install the \`Automake' and \`Perl' packages.  Grab them from |  | ||||||
|          any GNU archive site." |  | ||||||
|     touch aclocal.m4 |  | ||||||
|     ;; |  | ||||||
| 
 | 
 | ||||||
|  |   configure_deps="'configure.ac' or m4 files included by 'configure.ac'" | ||||||
|  |   case $normalized_program in | ||||||
|     autoconf*) |     autoconf*) | ||||||
|     echo 1>&2 "\ |       echo "You should only need it if you modified 'configure.ac'," | ||||||
| WARNING: \`$1' is $msg.  You should only need it if |       echo "or m4 files included by it." | ||||||
|          you modified \`${configure_ac}'.  You might want to install the |       program_details 'autoconf' | ||||||
|          \`Autoconf' and \`GNU m4' packages.  Grab them from any GNU |  | ||||||
|          archive site." |  | ||||||
|     touch configure |  | ||||||
|       ;; |       ;; | ||||||
| 
 |  | ||||||
|     autoheader*) |     autoheader*) | ||||||
|     echo 1>&2 "\ |       echo "You should only need it if you modified 'acconfig.h' or" | ||||||
| WARNING: \`$1' is $msg.  You should only need it if |       echo "$configure_deps." | ||||||
|          you modified \`acconfig.h' or \`${configure_ac}'.  You might want |       program_details 'autoheader' | ||||||
|          to install the \`Autoconf' and \`GNU m4' packages.  Grab them |  | ||||||
|          from any GNU archive site." |  | ||||||
|     files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' ${configure_ac}` |  | ||||||
|     test -z "$files" && files="config.h" |  | ||||||
|     touch_files= |  | ||||||
|     for f in $files; do |  | ||||||
|       case $f in |  | ||||||
|       *:*) touch_files="$touch_files "`echo "$f" | |  | ||||||
| 				       sed -e 's/^[^:]*://' -e 's/:.*//'`;; |  | ||||||
|       *) touch_files="$touch_files $f.in";; |  | ||||||
|       esac |  | ||||||
|     done |  | ||||||
|     touch $touch_files |  | ||||||
|       ;; |       ;; | ||||||
| 
 |  | ||||||
|     automake*) |     automake*) | ||||||
|     echo 1>&2 "\ |       echo "You should only need it if you modified 'Makefile.am' or" | ||||||
| WARNING: \`$1' is $msg.  You should only need it if |       echo "$configure_deps." | ||||||
|          you modified \`Makefile.am', \`acinclude.m4' or \`${configure_ac}'. |       program_details 'automake' | ||||||
|          You might want to install the \`Automake' and \`Perl' packages. |       ;; | ||||||
|          Grab them from any GNU archive site." |     aclocal*) | ||||||
|     find . -type f -name Makefile.am -print | |       echo "You should only need it if you modified 'acinclude.m4' or" | ||||||
| 	   sed 's/\.am$/.in/' | |       echo "$configure_deps." | ||||||
| 	   while read f; do touch "$f"; done |       program_details 'aclocal' | ||||||
|       ;; |       ;; | ||||||
| 
 |  | ||||||
|    autom4te*) |    autom4te*) | ||||||
|     echo 1>&2 "\ |       echo "You might have modified some maintainer files that require" | ||||||
| WARNING: \`$1' is needed, but is $msg. |       echo "the 'autom4te' program to be rebuilt." | ||||||
|          You might have modified some files without having the |       program_details 'autom4te' | ||||||
|          proper tools for further handling them. |  | ||||||
|          You can get \`$1' as part of \`Autoconf' from any GNU |  | ||||||
|          archive site." |  | ||||||
| 
 |  | ||||||
|     file=`echo "$*" | sed -n "$sed_output"` |  | ||||||
|     test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` |  | ||||||
|     if test -f "$file"; then |  | ||||||
| 	touch $file |  | ||||||
|     else |  | ||||||
| 	test -z "$file" || exec >$file |  | ||||||
| 	echo "#! /bin/sh" |  | ||||||
| 	echo "# Created by GNU Automake missing as a replacement of" |  | ||||||
| 	echo "#  $ $@" |  | ||||||
| 	echo "exit 0" |  | ||||||
| 	chmod +x $file |  | ||||||
| 	exit 1 |  | ||||||
|     fi |  | ||||||
|       ;; |       ;; | ||||||
| 
 |  | ||||||
|     bison*|yacc*) |     bison*|yacc*) | ||||||
|     echo 1>&2 "\ |       echo "You should only need it if you modified a '.y' file." | ||||||
| WARNING: \`$1' $msg.  You should only need it if |       echo "You may want to install the GNU Bison package:" | ||||||
|          you modified a \`.y' file.  You may need the \`Bison' package |       echo "<$gnu_software_URL/bison/>" | ||||||
|          in order for those modifications to take effect.  You can get |  | ||||||
|          \`Bison' from any GNU archive site." |  | ||||||
|     rm -f y.tab.c y.tab.h |  | ||||||
|     if test $# -ne 1; then |  | ||||||
|         eval LASTARG="\${$#}" |  | ||||||
| 	case $LASTARG in |  | ||||||
| 	*.y) |  | ||||||
| 	    SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'` |  | ||||||
| 	    if test -f "$SRCFILE"; then |  | ||||||
| 	         cp "$SRCFILE" y.tab.c |  | ||||||
| 	    fi |  | ||||||
| 	    SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'` |  | ||||||
| 	    if test -f "$SRCFILE"; then |  | ||||||
| 	         cp "$SRCFILE" y.tab.h |  | ||||||
| 	    fi |  | ||||||
|       ;; |       ;; | ||||||
| 	esac |  | ||||||
|     fi |  | ||||||
|     if test ! -f y.tab.h; then |  | ||||||
| 	echo >y.tab.h |  | ||||||
|     fi |  | ||||||
|     if test ! -f y.tab.c; then |  | ||||||
| 	echo 'main() { return 0; }' >y.tab.c |  | ||||||
|     fi |  | ||||||
|     ;; |  | ||||||
| 
 |  | ||||||
|     lex*|flex*) |     lex*|flex*) | ||||||
|     echo 1>&2 "\ |       echo "You should only need it if you modified a '.l' file." | ||||||
| WARNING: \`$1' is $msg.  You should only need it if |       echo "You may want to install the Fast Lexical Analyzer package:" | ||||||
|          you modified a \`.l' file.  You may need the \`Flex' package |       echo "<$flex_URL>" | ||||||
|          in order for those modifications to take effect.  You can get |  | ||||||
|          \`Flex' from any GNU archive site." |  | ||||||
|     rm -f lex.yy.c |  | ||||||
|     if test $# -ne 1; then |  | ||||||
|         eval LASTARG="\${$#}" |  | ||||||
| 	case $LASTARG in |  | ||||||
| 	*.l) |  | ||||||
| 	    SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'` |  | ||||||
| 	    if test -f "$SRCFILE"; then |  | ||||||
| 	         cp "$SRCFILE" lex.yy.c |  | ||||||
| 	    fi |  | ||||||
|       ;; |       ;; | ||||||
| 	esac |  | ||||||
|     fi |  | ||||||
|     if test ! -f lex.yy.c; then |  | ||||||
| 	echo 'main() { return 0; }' >lex.yy.c |  | ||||||
|     fi |  | ||||||
|     ;; |  | ||||||
| 
 |  | ||||||
|     help2man*) |     help2man*) | ||||||
|     echo 1>&2 "\ |       echo "You should only need it if you modified a dependency" \ | ||||||
| WARNING: \`$1' is $msg.  You should only need it if |            "of a man page." | ||||||
| 	 you modified a dependency of a manual page.  You may need the |       echo "You may want to install the GNU Help2man package:" | ||||||
| 	 \`Help2man' package in order for those modifications to take |       echo "<$gnu_software_URL/help2man/>" | ||||||
| 	 effect.  You can get \`Help2man' from any GNU archive site." |  | ||||||
| 
 |  | ||||||
|     file=`echo "$*" | sed -n "$sed_output"` |  | ||||||
|     test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` |  | ||||||
|     if test -f "$file"; then |  | ||||||
| 	touch $file |  | ||||||
|     else |  | ||||||
| 	test -z "$file" || exec >$file |  | ||||||
| 	echo ".ab help2man is required to generate this page" |  | ||||||
| 	exit $? |  | ||||||
|     fi |  | ||||||
|     ;; |     ;; | ||||||
| 
 |  | ||||||
|     makeinfo*) |     makeinfo*) | ||||||
|     echo 1>&2 "\ |       echo "You should only need it if you modified a '.texi' file, or" | ||||||
| WARNING: \`$1' is $msg.  You should only need it if |       echo "any other file indirectly affecting the aspect of the manual." | ||||||
|          you modified a \`.texi' or \`.texinfo' file, or any other file |       echo "You might want to install the Texinfo package:" | ||||||
|          indirectly affecting the aspect of the manual.  The spurious |       echo "<$gnu_software_URL/texinfo/>" | ||||||
|          call might also be the consequence of using a buggy \`make' (AIX, |       echo "The spurious makeinfo call might also be the consequence of" | ||||||
|          DU, IRIX).  You might want to install the \`Texinfo' package or |       echo "using a buggy 'make' (AIX, DU, IRIX), in which case you might" | ||||||
|          the \`GNU make' package.  Grab either from any GNU archive site." |       echo "want to install GNU make:" | ||||||
|     # The file to touch is that specified with -o ... |       echo "<$gnu_software_URL/make/>" | ||||||
|     file=`echo "$*" | sed -n "$sed_output"` |  | ||||||
|     test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` |  | ||||||
|     if test -z "$file"; then |  | ||||||
|       # ... or it is the one specified with @setfilename ... |  | ||||||
|       infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'` |  | ||||||
|       file=`sed -n ' |  | ||||||
| 	/^@setfilename/{ |  | ||||||
| 	  s/.* \([^ ]*\) *$/\1/ |  | ||||||
| 	  p |  | ||||||
| 	  q |  | ||||||
| 	}' $infile` |  | ||||||
|       # ... or it is derived from the source name (dir/f.texi becomes f.info) |  | ||||||
|       test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info |  | ||||||
|     fi |  | ||||||
|     # If the file does not exist, the user really needs makeinfo; |  | ||||||
|     # let's fail without touching anything. |  | ||||||
|     test -f $file || exit 1 |  | ||||||
|     touch $file |  | ||||||
|       ;; |       ;; | ||||||
| 
 |  | ||||||
|   tar*) |  | ||||||
|     shift |  | ||||||
| 
 |  | ||||||
|     # We have already tried tar in the generic part. |  | ||||||
|     # Look for gnutar/gtar before invocation to avoid ugly error |  | ||||||
|     # messages. |  | ||||||
|     if (gnutar --version > /dev/null 2>&1); then |  | ||||||
|        gnutar "$@" && exit 0 |  | ||||||
|     fi |  | ||||||
|     if (gtar --version > /dev/null 2>&1); then |  | ||||||
|        gtar "$@" && exit 0 |  | ||||||
|     fi |  | ||||||
|     firstarg="$1" |  | ||||||
|     if shift; then |  | ||||||
| 	case $firstarg in |  | ||||||
| 	*o*) |  | ||||||
| 	    firstarg=`echo "$firstarg" | sed s/o//` |  | ||||||
| 	    tar "$firstarg" "$@" && exit 0 |  | ||||||
| 	    ;; |  | ||||||
| 	esac |  | ||||||
| 	case $firstarg in |  | ||||||
| 	*h*) |  | ||||||
| 	    firstarg=`echo "$firstarg" | sed s/h//` |  | ||||||
| 	    tar "$firstarg" "$@" && exit 0 |  | ||||||
| 	    ;; |  | ||||||
| 	esac |  | ||||||
|     fi |  | ||||||
| 
 |  | ||||||
|     echo 1>&2 "\ |  | ||||||
| WARNING: I can't seem to be able to run \`tar' with the given arguments. |  | ||||||
|          You may want to install GNU tar or Free paxutils, or check the |  | ||||||
|          command line arguments." |  | ||||||
|     exit 1 |  | ||||||
|     ;; |  | ||||||
| 
 |  | ||||||
|     *) |     *) | ||||||
|     echo 1>&2 "\ |       echo "You might have modified some files without having the proper" | ||||||
| WARNING: \`$1' is needed, and is $msg. |       echo "tools for further handling them.  Check the 'README' file, it" | ||||||
|          You might have modified some files without having the |       echo "often tells you about the needed prerequisites for installing" | ||||||
|          proper tools for further handling them.  Check the \`README' file, |       echo "this package.  You may also peek at any GNU archive site, in" | ||||||
|          it often tells you about the needed prerequisites for installing |       echo "case some other package contains this missing '$1' program." | ||||||
|          this package.  You may also peek at any GNU archive site, in case |  | ||||||
|          some other package would contain this missing \`$1' program." |  | ||||||
|     exit 1 |  | ||||||
|       ;; |       ;; | ||||||
| esac |   esac | ||||||
|  | } | ||||||
| 
 | 
 | ||||||
| exit 0 | give_advice "$1" | sed -e '1s/^/WARNING: /' \ | ||||||
|  |                        -e '2,$s/^/         /' >&2 | ||||||
|  | 
 | ||||||
|  | # Propagate the correct exit status (expected to be 127 for a program | ||||||
|  | # not found, 63 for a program that failed due to version mismatch). | ||||||
|  | exit $st | ||||||
| 
 | 
 | ||||||
| # Local variables: | # Local variables: | ||||||
| # eval: (add-hook 'write-file-hooks 'time-stamp) | # eval: (add-hook 'write-file-hooks 'time-stamp) | ||||||
|  |  | ||||||
|  | @ -1,9 +1,8 @@ | ||||||
| # Makefile.in generated by automake 1.11.1 from Makefile.am.
 | # Makefile.in generated by automake 1.14.1 from Makefile.am.
 | ||||||
| # @configure_input@
 | # @configure_input@
 | ||||||
| 
 | 
 | ||||||
| # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
 | # Copyright (C) 1994-2013 Free Software Foundation, Inc.
 | ||||||
| # 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
 | 
 | ||||||
| # Inc.
 |  | ||||||
| # This Makefile.in is free software; the Free Software Foundation
 | # This Makefile.in is free software; the Free Software Foundation
 | ||||||
| # gives unlimited permission to copy and/or distribute it,
 | # gives unlimited permission to copy and/or distribute it,
 | ||||||
| # with or without modifications, as long as this notice is preserved.
 | # with or without modifications, as long as this notice is preserved.
 | ||||||
|  | @ -16,6 +15,51 @@ | ||||||
| @SET_MAKE@ | @SET_MAKE@ | ||||||
| 
 | 
 | ||||||
| VPATH = @srcdir@ | VPATH = @srcdir@ | ||||||
|  | am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' | ||||||
|  | am__make_running_with_option = \
 | ||||||
|  |   case $${target_option-} in \
 | ||||||
|  |       ?) ;; \
 | ||||||
|  |       *) echo "am__make_running_with_option: internal error: invalid" \
 | ||||||
|  |               "target option '$${target_option-}' specified" >&2; \
 | ||||||
|  |          exit 1;; \
 | ||||||
|  |   esac; \
 | ||||||
|  |   has_opt=no; \
 | ||||||
|  |   sane_makeflags=$$MAKEFLAGS; \
 | ||||||
|  |   if $(am__is_gnu_make); then \
 | ||||||
|  |     sane_makeflags=$$MFLAGS; \
 | ||||||
|  |   else \
 | ||||||
|  |     case $$MAKEFLAGS in \
 | ||||||
|  |       *\\[\ \	]*) \
 | ||||||
|  |         bs=\\; \
 | ||||||
|  |         sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
 | ||||||
|  |           | sed "s/$$bs$$bs[$$bs $$bs	]*//g"`;; \
 | ||||||
|  |     esac; \
 | ||||||
|  |   fi; \
 | ||||||
|  |   skip_next=no; \
 | ||||||
|  |   strip_trailopt () \
 | ||||||
|  |   { \
 | ||||||
|  |     flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
 | ||||||
|  |   }; \
 | ||||||
|  |   for flg in $$sane_makeflags; do \
 | ||||||
|  |     test $$skip_next = yes && { skip_next=no; continue; }; \
 | ||||||
|  |     case $$flg in \
 | ||||||
|  |       *=*|--*) continue;; \
 | ||||||
|  |         -*I) strip_trailopt 'I'; skip_next=yes;; \
 | ||||||
|  |       -*I?*) strip_trailopt 'I';; \
 | ||||||
|  |         -*O) strip_trailopt 'O'; skip_next=yes;; \
 | ||||||
|  |       -*O?*) strip_trailopt 'O';; \
 | ||||||
|  |         -*l) strip_trailopt 'l'; skip_next=yes;; \
 | ||||||
|  |       -*l?*) strip_trailopt 'l';; \
 | ||||||
|  |       -[dEDm]) skip_next=yes;; \
 | ||||||
|  |       -[JT]) skip_next=yes;; \
 | ||||||
|  |     esac; \
 | ||||||
|  |     case $$flg in \
 | ||||||
|  |       *$$target_option*) has_opt=yes; break;; \
 | ||||||
|  |     esac; \
 | ||||||
|  |   done; \
 | ||||||
|  |   test $$has_opt = yes | ||||||
|  | am__make_dryrun = (target_option=n; $(am__make_running_with_option)) | ||||||
|  | am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) | ||||||
| pkgdatadir = $(datadir)/@PACKAGE@ | pkgdatadir = $(datadir)/@PACKAGE@ | ||||||
| pkgincludedir = $(includedir)/@PACKAGE@ | pkgincludedir = $(includedir)/@PACKAGE@ | ||||||
| pkglibdir = $(libdir)/@PACKAGE@ | pkglibdir = $(libdir)/@PACKAGE@ | ||||||
|  | @ -43,15 +87,27 @@ mkinstalldirs = $(install_sh) -d | ||||||
| CONFIG_CLEAN_FILES = | CONFIG_CLEAN_FILES = | ||||||
| CONFIG_CLEAN_VPATH_FILES = | CONFIG_CLEAN_VPATH_FILES = | ||||||
| PROGRAMS = $(noinst_PROGRAMS) | PROGRAMS = $(noinst_PROGRAMS) | ||||||
|  | AM_V_P = $(am__v_P_@AM_V@) | ||||||
|  | am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) | ||||||
|  | am__v_P_0 = false | ||||||
|  | am__v_P_1 = : | ||||||
|  | AM_V_GEN = $(am__v_GEN_@AM_V@) | ||||||
|  | am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) | ||||||
|  | am__v_GEN_0 = @echo "  GEN     " $@; | ||||||
|  | am__v_GEN_1 =  | ||||||
|  | AM_V_at = $(am__v_at_@AM_V@) | ||||||
|  | am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) | ||||||
|  | am__v_at_0 = @ | ||||||
|  | am__v_at_1 =  | ||||||
| depcomp = | depcomp = | ||||||
| am__depfiles_maybe = | am__depfiles_maybe = | ||||||
| AM_V_GEN = $(am__v_GEN_$(V)) |  | ||||||
| am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) |  | ||||||
| am__v_GEN_0 = @echo "  GEN   " $@; |  | ||||||
| AM_V_at = $(am__v_at_$(V)) |  | ||||||
| am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) |  | ||||||
| am__v_at_0 = @ |  | ||||||
| SOURCES = | SOURCES = | ||||||
|  | am__can_run_installinfo = \
 | ||||||
|  |   case $$AM_UPDATE_INFO_DIR in \
 | ||||||
|  |     n|no|NO) false;; \
 | ||||||
|  |     *) (install-info --version) >/dev/null 2>&1;; \
 | ||||||
|  |   esac | ||||||
|  | am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) | ||||||
| ACLOCAL = @ACLOCAL@ | ACLOCAL = @ACLOCAL@ | ||||||
| AMTAR = @AMTAR@ | AMTAR = @AMTAR@ | ||||||
| AM_CFLAGS = @AM_CFLAGS@ | AM_CFLAGS = @AM_CFLAGS@ | ||||||
|  | @ -183,11 +239,11 @@ $(am__aclocal_m4_deps): | ||||||
| 
 | 
 | ||||||
| clean-noinstPROGRAMS: | clean-noinstPROGRAMS: | ||||||
| 	-test -z "$(noinst_PROGRAMS)" || rm -f $(noinst_PROGRAMS) | 	-test -z "$(noinst_PROGRAMS)" || rm -f $(noinst_PROGRAMS) | ||||||
| tags: TAGS | tags TAGS: | ||||||
| TAGS: |  | ||||||
| 
 | 
 | ||||||
| ctags: CTAGS | ctags CTAGS: | ||||||
| CTAGS: | 
 | ||||||
|  | cscope cscopelist: | ||||||
| 
 | 
 | ||||||
| check-am: all-am | check-am: all-am | ||||||
| check: $(BUILT_SOURCES) | check: $(BUILT_SOURCES) | ||||||
|  | @ -205,10 +261,15 @@ install-am: all-am | ||||||
| 
 | 
 | ||||||
| installcheck: installcheck-am | installcheck: installcheck-am | ||||||
| install-strip: | install-strip: | ||||||
|  | 	if test -z '$(STRIP)'; then \
 | ||||||
| 	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 | 	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 | ||||||
| 	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 | 	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 | ||||||
| 	  `test -z '$(STRIP)' || \
 | 	      install; \
 | ||||||
| 	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install | 	else \
 | ||||||
|  | 	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 | ||||||
|  | 	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 | ||||||
|  | 	    "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
 | ||||||
|  | 	fi | ||||||
| mostlyclean-generic: | mostlyclean-generic: | ||||||
| 
 | 
 | ||||||
| clean-generic: | clean-generic: | ||||||
|  | @ -291,15 +352,16 @@ uninstall-am: | ||||||
| .MAKE: all check install install-am install-strip | .MAKE: all check install install-am install-strip | ||||||
| 
 | 
 | ||||||
| .PHONY: all all-am all-local check check-am clean clean-generic \ | .PHONY: all all-am all-local check check-am clean clean-generic \ | ||||||
| 	clean-local clean-noinstPROGRAMS distclean distclean-generic \
 | 	clean-local clean-noinstPROGRAMS cscopelist-am ctags-am \
 | ||||||
| 	dvi dvi-am html html-am info info-am install install-am \
 | 	distclean distclean-generic dvi dvi-am html html-am info \
 | ||||||
| 	install-data install-data-am install-dvi install-dvi-am \
 | 	info-am install install-am install-data install-data-am \
 | ||||||
| 	install-exec install-exec-am install-html install-html-am \
 | 	install-dvi install-dvi-am install-exec install-exec-am \
 | ||||||
| 	install-info install-info-am install-man install-pdf \
 | 	install-html install-html-am install-info install-info-am \
 | ||||||
| 	install-pdf-am install-ps install-ps-am install-strip \
 | 	install-man install-pdf install-pdf-am install-ps \
 | ||||||
| 	installcheck installcheck-am installdirs maintainer-clean \
 | 	install-ps-am install-strip installcheck installcheck-am \
 | ||||||
| 	maintainer-clean-generic mostlyclean mostlyclean-generic pdf \
 | 	installdirs maintainer-clean maintainer-clean-generic \
 | ||||||
| 	pdf-am ps ps-am uninstall uninstall-am | 	mostlyclean mostlyclean-generic pdf pdf-am ps ps-am tags-am \
 | ||||||
|  | 	uninstall uninstall-am | ||||||
| 
 | 
 | ||||||
| all-local: embedded.loc | all-local: embedded.loc | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
							
								
								
									
										404
									
								
								src/Makefile.in
									
										
									
									
									
								
							
							
						
						
									
										404
									
								
								src/Makefile.in
									
										
									
									
									
								
							|  | @ -1,9 +1,8 @@ | ||||||
| # Makefile.in generated by automake 1.11.1 from Makefile.am.
 | # Makefile.in generated by automake 1.14.1 from Makefile.am.
 | ||||||
| # @configure_input@
 | # @configure_input@
 | ||||||
| 
 | 
 | ||||||
| # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
 | # Copyright (C) 1994-2013 Free Software Foundation, Inc.
 | ||||||
| # 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
 | 
 | ||||||
| # Inc.
 |  | ||||||
| # This Makefile.in is free software; the Free Software Foundation
 | # This Makefile.in is free software; the Free Software Foundation
 | ||||||
| # gives unlimited permission to copy and/or distribute it,
 | # gives unlimited permission to copy and/or distribute it,
 | ||||||
| # with or without modifications, as long as this notice is preserved.
 | # with or without modifications, as long as this notice is preserved.
 | ||||||
|  | @ -16,6 +15,51 @@ | ||||||
| @SET_MAKE@ | @SET_MAKE@ | ||||||
| 
 | 
 | ||||||
| VPATH = @srcdir@ | VPATH = @srcdir@ | ||||||
|  | am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' | ||||||
|  | am__make_running_with_option = \
 | ||||||
|  |   case $${target_option-} in \
 | ||||||
|  |       ?) ;; \
 | ||||||
|  |       *) echo "am__make_running_with_option: internal error: invalid" \
 | ||||||
|  |               "target option '$${target_option-}' specified" >&2; \
 | ||||||
|  |          exit 1;; \
 | ||||||
|  |   esac; \
 | ||||||
|  |   has_opt=no; \
 | ||||||
|  |   sane_makeflags=$$MAKEFLAGS; \
 | ||||||
|  |   if $(am__is_gnu_make); then \
 | ||||||
|  |     sane_makeflags=$$MFLAGS; \
 | ||||||
|  |   else \
 | ||||||
|  |     case $$MAKEFLAGS in \
 | ||||||
|  |       *\\[\ \	]*) \
 | ||||||
|  |         bs=\\; \
 | ||||||
|  |         sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
 | ||||||
|  |           | sed "s/$$bs$$bs[$$bs $$bs	]*//g"`;; \
 | ||||||
|  |     esac; \
 | ||||||
|  |   fi; \
 | ||||||
|  |   skip_next=no; \
 | ||||||
|  |   strip_trailopt () \
 | ||||||
|  |   { \
 | ||||||
|  |     flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
 | ||||||
|  |   }; \
 | ||||||
|  |   for flg in $$sane_makeflags; do \
 | ||||||
|  |     test $$skip_next = yes && { skip_next=no; continue; }; \
 | ||||||
|  |     case $$flg in \
 | ||||||
|  |       *=*|--*) continue;; \
 | ||||||
|  |         -*I) strip_trailopt 'I'; skip_next=yes;; \
 | ||||||
|  |       -*I?*) strip_trailopt 'I';; \
 | ||||||
|  |         -*O) strip_trailopt 'O'; skip_next=yes;; \
 | ||||||
|  |       -*O?*) strip_trailopt 'O';; \
 | ||||||
|  |         -*l) strip_trailopt 'l'; skip_next=yes;; \
 | ||||||
|  |       -*l?*) strip_trailopt 'l';; \
 | ||||||
|  |       -[dEDm]) skip_next=yes;; \
 | ||||||
|  |       -[JT]) skip_next=yes;; \
 | ||||||
|  |     esac; \
 | ||||||
|  |     case $$flg in \
 | ||||||
|  |       *$$target_option*) has_opt=yes; break;; \
 | ||||||
|  |     esac; \
 | ||||||
|  |   done; \
 | ||||||
|  |   test $$has_opt = yes | ||||||
|  | am__make_dryrun = (target_option=n; $(am__make_running_with_option)) | ||||||
|  | am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) | ||||||
| pkgdatadir = $(datadir)/@PACKAGE@ | pkgdatadir = $(datadir)/@PACKAGE@ | ||||||
| pkgincludedir = $(includedir)/@PACKAGE@ | pkgincludedir = $(includedir)/@PACKAGE@ | ||||||
| pkglibdir = $(libdir)/@PACKAGE@ | pkglibdir = $(libdir)/@PACKAGE@ | ||||||
|  | @ -59,40 +103,75 @@ rufus_DEPENDENCIES = rufus_rc.o ms-sys/libmssys.a \ | ||||||
| 	libcdio/driver/libdriver.a | 	libcdio/driver/libdriver.a | ||||||
| rufus_LINK = $(CCLD) $(rufus_CFLAGS) $(CFLAGS) $(rufus_LDFLAGS) \
 | rufus_LINK = $(CCLD) $(rufus_CFLAGS) $(CFLAGS) $(rufus_LDFLAGS) \
 | ||||||
| 	$(LDFLAGS) -o $@ | 	$(LDFLAGS) -o $@ | ||||||
|  | AM_V_P = $(am__v_P_@AM_V@) | ||||||
|  | am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) | ||||||
|  | am__v_P_0 = false | ||||||
|  | am__v_P_1 = : | ||||||
|  | AM_V_GEN = $(am__v_GEN_@AM_V@) | ||||||
|  | am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) | ||||||
|  | am__v_GEN_0 = @echo "  GEN     " $@; | ||||||
|  | am__v_GEN_1 =  | ||||||
|  | AM_V_at = $(am__v_at_@AM_V@) | ||||||
|  | am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) | ||||||
|  | am__v_at_0 = @ | ||||||
|  | am__v_at_1 =  | ||||||
| DEFAULT_INCLUDES = -I.@am__isrc@ | DEFAULT_INCLUDES = -I.@am__isrc@ | ||||||
| depcomp = | depcomp = | ||||||
| am__depfiles_maybe = | am__depfiles_maybe = | ||||||
| AM_V_lt = $(am__v_lt_$(V)) | AM_V_lt = $(am__v_lt_@AM_V@) | ||||||
| am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) | am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) | ||||||
| am__v_lt_0 = --silent | am__v_lt_0 = --silent | ||||||
|  | am__v_lt_1 =  | ||||||
| COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
 | COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
 | ||||||
| 	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) | 	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) | ||||||
| AM_V_CC = $(am__v_CC_$(V)) | AM_V_CC = $(am__v_CC_@AM_V@) | ||||||
| am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) | am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) | ||||||
| am__v_CC_0 = @echo "  CC      " $@; | am__v_CC_0 = @echo "  CC      " $@; | ||||||
| AM_V_at = $(am__v_at_$(V)) | am__v_CC_1 =  | ||||||
| am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) |  | ||||||
| am__v_at_0 = @ |  | ||||||
| CCLD = $(CC) | CCLD = $(CC) | ||||||
| LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ | LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ | ||||||
| AM_V_CCLD = $(am__v_CCLD_$(V)) | AM_V_CCLD = $(am__v_CCLD_@AM_V@) | ||||||
| am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) | am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) | ||||||
| am__v_CCLD_0 = @echo "  CCLD    " $@; | am__v_CCLD_0 = @echo "  CCLD    " $@; | ||||||
| AM_V_GEN = $(am__v_GEN_$(V)) | am__v_CCLD_1 =  | ||||||
| am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) |  | ||||||
| am__v_GEN_0 = @echo "  GEN   " $@; |  | ||||||
| SOURCES = $(rufus_SOURCES) | SOURCES = $(rufus_SOURCES) | ||||||
| RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
 | RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
 | ||||||
| 	html-recursive info-recursive install-data-recursive \
 | 	ctags-recursive dvi-recursive html-recursive info-recursive \
 | ||||||
| 	install-dvi-recursive install-exec-recursive \
 | 	install-data-recursive install-dvi-recursive \
 | ||||||
| 	install-html-recursive install-info-recursive \
 | 	install-exec-recursive install-html-recursive \
 | ||||||
| 	install-pdf-recursive install-ps-recursive install-recursive \
 | 	install-info-recursive install-pdf-recursive \
 | ||||||
| 	installcheck-recursive installdirs-recursive pdf-recursive \
 | 	install-ps-recursive install-recursive installcheck-recursive \
 | ||||||
| 	ps-recursive uninstall-recursive | 	installdirs-recursive pdf-recursive ps-recursive \
 | ||||||
|  | 	tags-recursive uninstall-recursive | ||||||
|  | am__can_run_installinfo = \
 | ||||||
|  |   case $$AM_UPDATE_INFO_DIR in \
 | ||||||
|  |     n|no|NO) false;; \
 | ||||||
|  |     *) (install-info --version) >/dev/null 2>&1;; \
 | ||||||
|  |   esac | ||||||
| RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive	\
 | RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive	\
 | ||||||
|   distclean-recursive maintainer-clean-recursive |   distclean-recursive maintainer-clean-recursive | ||||||
| AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
 | am__recursive_targets = \
 | ||||||
| 	$(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS |   $(RECURSIVE_TARGETS) \
 | ||||||
|  |   $(RECURSIVE_CLEAN_TARGETS) \
 | ||||||
|  |   $(am__extra_recursive_targets) | ||||||
|  | AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS | ||||||
|  | am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) | ||||||
|  | # Read a list of newline-separated strings from the standard input,
 | ||||||
|  | # and print each of them once, without duplicates.  Input order is
 | ||||||
|  | # *not* preserved.
 | ||||||
|  | am__uniquify_input = $(AWK) '\
 | ||||||
|  |   BEGIN { nonempty = 0; } \
 | ||||||
|  |   { items[$$0] = 1; nonempty = 1; } \
 | ||||||
|  |   END { if (nonempty) { for (i in items) print i; }; } \
 | ||||||
|  | ' | ||||||
|  | # Make sure the list of sources is unique.  This is necessary because,
 | ||||||
|  | # e.g., the same source file might be shared among _SOURCES variables
 | ||||||
|  | # for different programs/libraries.
 | ||||||
|  | am__define_uniq_tagged_files = \
 | ||||||
|  |   list='$(am__tagged_files)'; \
 | ||||||
|  |   unique=`for i in $$list; do \
 | ||||||
|  |     if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 | ||||||
|  |   done | $(am__uniquify_input)` | ||||||
| ETAGS = etags | ETAGS = etags | ||||||
| CTAGS = ctags | CTAGS = ctags | ||||||
| DIST_SUBDIRS = $(SUBDIRS) | DIST_SUBDIRS = $(SUBDIRS) | ||||||
|  | @ -232,7 +311,8 @@ $(am__aclocal_m4_deps): | ||||||
| 
 | 
 | ||||||
| clean-noinstPROGRAMS: | clean-noinstPROGRAMS: | ||||||
| 	-test -z "$(noinst_PROGRAMS)" || rm -f $(noinst_PROGRAMS) | 	-test -z "$(noinst_PROGRAMS)" || rm -f $(noinst_PROGRAMS) | ||||||
| rufus$(EXEEXT): $(rufus_OBJECTS) $(rufus_DEPENDENCIES)  | 
 | ||||||
|  | rufus$(EXEEXT): $(rufus_OBJECTS) $(rufus_DEPENDENCIES) $(EXTRA_rufus_DEPENDENCIES)  | ||||||
| 	@rm -f rufus$(EXEEXT) | 	@rm -f rufus$(EXEEXT) | ||||||
| 	$(AM_V_CCLD)$(rufus_LINK) $(rufus_OBJECTS) $(rufus_LDADD) $(LIBS) | 	$(AM_V_CCLD)$(rufus_LINK) $(rufus_OBJECTS) $(rufus_LDADD) $(LIBS) | ||||||
| 
 | 
 | ||||||
|  | @ -243,174 +323,139 @@ distclean-compile: | ||||||
| 	-rm -f *.tab.c | 	-rm -f *.tab.c | ||||||
| 
 | 
 | ||||||
| .c.o: | .c.o: | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(COMPILE) -c -o $@ $< | ||||||
| 	$(COMPILE) -c $< |  | ||||||
| 
 | 
 | ||||||
| .c.obj: | .c.obj: | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` | ||||||
| 	$(COMPILE) -c `$(CYGPATH_W) '$<'` |  | ||||||
| 
 | 
 | ||||||
| rufus-drive.o: drive.c | rufus-drive.o: drive.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-drive.o `test -f 'drive.c' || echo '$(srcdir)/'`drive.c | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-drive.o `test -f 'drive.c' || echo '$(srcdir)/'`drive.c |  | ||||||
| 
 | 
 | ||||||
| rufus-drive.obj: drive.c | rufus-drive.obj: drive.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-drive.obj `if test -f 'drive.c'; then $(CYGPATH_W) 'drive.c'; else $(CYGPATH_W) '$(srcdir)/drive.c'; fi` | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-drive.obj `if test -f 'drive.c'; then $(CYGPATH_W) 'drive.c'; else $(CYGPATH_W) '$(srcdir)/drive.c'; fi` |  | ||||||
| 
 | 
 | ||||||
| rufus-icon.o: icon.c | rufus-icon.o: icon.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-icon.o `test -f 'icon.c' || echo '$(srcdir)/'`icon.c | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-icon.o `test -f 'icon.c' || echo '$(srcdir)/'`icon.c |  | ||||||
| 
 | 
 | ||||||
| rufus-icon.obj: icon.c | rufus-icon.obj: icon.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-icon.obj `if test -f 'icon.c'; then $(CYGPATH_W) 'icon.c'; else $(CYGPATH_W) '$(srcdir)/icon.c'; fi` | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-icon.obj `if test -f 'icon.c'; then $(CYGPATH_W) 'icon.c'; else $(CYGPATH_W) '$(srcdir)/icon.c'; fi` |  | ||||||
| 
 | 
 | ||||||
| rufus-parser.o: parser.c | rufus-parser.o: parser.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-parser.o `test -f 'parser.c' || echo '$(srcdir)/'`parser.c | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-parser.o `test -f 'parser.c' || echo '$(srcdir)/'`parser.c |  | ||||||
| 
 | 
 | ||||||
| rufus-parser.obj: parser.c | rufus-parser.obj: parser.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-parser.obj `if test -f 'parser.c'; then $(CYGPATH_W) 'parser.c'; else $(CYGPATH_W) '$(srcdir)/parser.c'; fi` | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-parser.obj `if test -f 'parser.c'; then $(CYGPATH_W) 'parser.c'; else $(CYGPATH_W) '$(srcdir)/parser.c'; fi` |  | ||||||
| 
 | 
 | ||||||
| rufus-localization.o: localization.c | rufus-localization.o: localization.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-localization.o `test -f 'localization.c' || echo '$(srcdir)/'`localization.c | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-localization.o `test -f 'localization.c' || echo '$(srcdir)/'`localization.c |  | ||||||
| 
 | 
 | ||||||
| rufus-localization.obj: localization.c | rufus-localization.obj: localization.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-localization.obj `if test -f 'localization.c'; then $(CYGPATH_W) 'localization.c'; else $(CYGPATH_W) '$(srcdir)/localization.c'; fi` | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-localization.obj `if test -f 'localization.c'; then $(CYGPATH_W) 'localization.c'; else $(CYGPATH_W) '$(srcdir)/localization.c'; fi` |  | ||||||
| 
 | 
 | ||||||
| rufus-iso.o: iso.c | rufus-iso.o: iso.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-iso.o `test -f 'iso.c' || echo '$(srcdir)/'`iso.c | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-iso.o `test -f 'iso.c' || echo '$(srcdir)/'`iso.c |  | ||||||
| 
 | 
 | ||||||
| rufus-iso.obj: iso.c | rufus-iso.obj: iso.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-iso.obj `if test -f 'iso.c'; then $(CYGPATH_W) 'iso.c'; else $(CYGPATH_W) '$(srcdir)/iso.c'; fi` | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-iso.obj `if test -f 'iso.c'; then $(CYGPATH_W) 'iso.c'; else $(CYGPATH_W) '$(srcdir)/iso.c'; fi` |  | ||||||
| 
 | 
 | ||||||
| rufus-net.o: net.c | rufus-net.o: net.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-net.o `test -f 'net.c' || echo '$(srcdir)/'`net.c | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-net.o `test -f 'net.c' || echo '$(srcdir)/'`net.c |  | ||||||
| 
 | 
 | ||||||
| rufus-net.obj: net.c | rufus-net.obj: net.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-net.obj `if test -f 'net.c'; then $(CYGPATH_W) 'net.c'; else $(CYGPATH_W) '$(srcdir)/net.c'; fi` | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-net.obj `if test -f 'net.c'; then $(CYGPATH_W) 'net.c'; else $(CYGPATH_W) '$(srcdir)/net.c'; fi` |  | ||||||
| 
 | 
 | ||||||
| rufus-dos.o: dos.c | rufus-dos.o: dos.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-dos.o `test -f 'dos.c' || echo '$(srcdir)/'`dos.c | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-dos.o `test -f 'dos.c' || echo '$(srcdir)/'`dos.c |  | ||||||
| 
 | 
 | ||||||
| rufus-dos.obj: dos.c | rufus-dos.obj: dos.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-dos.obj `if test -f 'dos.c'; then $(CYGPATH_W) 'dos.c'; else $(CYGPATH_W) '$(srcdir)/dos.c'; fi` | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-dos.obj `if test -f 'dos.c'; then $(CYGPATH_W) 'dos.c'; else $(CYGPATH_W) '$(srcdir)/dos.c'; fi` |  | ||||||
| 
 | 
 | ||||||
| rufus-dos_locale.o: dos_locale.c | rufus-dos_locale.o: dos_locale.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-dos_locale.o `test -f 'dos_locale.c' || echo '$(srcdir)/'`dos_locale.c | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-dos_locale.o `test -f 'dos_locale.c' || echo '$(srcdir)/'`dos_locale.c |  | ||||||
| 
 | 
 | ||||||
| rufus-dos_locale.obj: dos_locale.c | rufus-dos_locale.obj: dos_locale.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-dos_locale.obj `if test -f 'dos_locale.c'; then $(CYGPATH_W) 'dos_locale.c'; else $(CYGPATH_W) '$(srcdir)/dos_locale.c'; fi` | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-dos_locale.obj `if test -f 'dos_locale.c'; then $(CYGPATH_W) 'dos_locale.c'; else $(CYGPATH_W) '$(srcdir)/dos_locale.c'; fi` |  | ||||||
| 
 | 
 | ||||||
| rufus-badblocks.o: badblocks.c | rufus-badblocks.o: badblocks.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-badblocks.o `test -f 'badblocks.c' || echo '$(srcdir)/'`badblocks.c | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-badblocks.o `test -f 'badblocks.c' || echo '$(srcdir)/'`badblocks.c |  | ||||||
| 
 | 
 | ||||||
| rufus-badblocks.obj: badblocks.c | rufus-badblocks.obj: badblocks.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-badblocks.obj `if test -f 'badblocks.c'; then $(CYGPATH_W) 'badblocks.c'; else $(CYGPATH_W) '$(srcdir)/badblocks.c'; fi` | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-badblocks.obj `if test -f 'badblocks.c'; then $(CYGPATH_W) 'badblocks.c'; else $(CYGPATH_W) '$(srcdir)/badblocks.c'; fi` |  | ||||||
| 
 | 
 | ||||||
| rufus-syslinux.o: syslinux.c | rufus-syslinux.o: syslinux.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-syslinux.o `test -f 'syslinux.c' || echo '$(srcdir)/'`syslinux.c | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-syslinux.o `test -f 'syslinux.c' || echo '$(srcdir)/'`syslinux.c |  | ||||||
| 
 | 
 | ||||||
| rufus-syslinux.obj: syslinux.c | rufus-syslinux.obj: syslinux.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-syslinux.obj `if test -f 'syslinux.c'; then $(CYGPATH_W) 'syslinux.c'; else $(CYGPATH_W) '$(srcdir)/syslinux.c'; fi` | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-syslinux.obj `if test -f 'syslinux.c'; then $(CYGPATH_W) 'syslinux.c'; else $(CYGPATH_W) '$(srcdir)/syslinux.c'; fi` |  | ||||||
| 
 | 
 | ||||||
| rufus-usb.o: usb.c | rufus-usb.o: usb.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-usb.o `test -f 'usb.c' || echo '$(srcdir)/'`usb.c | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-usb.o `test -f 'usb.c' || echo '$(srcdir)/'`usb.c |  | ||||||
| 
 | 
 | ||||||
| rufus-usb.obj: usb.c | rufus-usb.obj: usb.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-usb.obj `if test -f 'usb.c'; then $(CYGPATH_W) 'usb.c'; else $(CYGPATH_W) '$(srcdir)/usb.c'; fi` | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-usb.obj `if test -f 'usb.c'; then $(CYGPATH_W) 'usb.c'; else $(CYGPATH_W) '$(srcdir)/usb.c'; fi` |  | ||||||
| 
 | 
 | ||||||
| rufus-vhd.o: vhd.c | rufus-vhd.o: vhd.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-vhd.o `test -f 'vhd.c' || echo '$(srcdir)/'`vhd.c | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-vhd.o `test -f 'vhd.c' || echo '$(srcdir)/'`vhd.c |  | ||||||
| 
 | 
 | ||||||
| rufus-vhd.obj: vhd.c | rufus-vhd.obj: vhd.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-vhd.obj `if test -f 'vhd.c'; then $(CYGPATH_W) 'vhd.c'; else $(CYGPATH_W) '$(srcdir)/vhd.c'; fi` | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-vhd.obj `if test -f 'vhd.c'; then $(CYGPATH_W) 'vhd.c'; else $(CYGPATH_W) '$(srcdir)/vhd.c'; fi` |  | ||||||
| 
 | 
 | ||||||
| rufus-format.o: format.c | rufus-format.o: format.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-format.o `test -f 'format.c' || echo '$(srcdir)/'`format.c | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-format.o `test -f 'format.c' || echo '$(srcdir)/'`format.c |  | ||||||
| 
 | 
 | ||||||
| rufus-format.obj: format.c | rufus-format.obj: format.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-format.obj `if test -f 'format.c'; then $(CYGPATH_W) 'format.c'; else $(CYGPATH_W) '$(srcdir)/format.c'; fi` | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-format.obj `if test -f 'format.c'; then $(CYGPATH_W) 'format.c'; else $(CYGPATH_W) '$(srcdir)/format.c'; fi` |  | ||||||
| 
 | 
 | ||||||
| rufus-smart.o: smart.c | rufus-smart.o: smart.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-smart.o `test -f 'smart.c' || echo '$(srcdir)/'`smart.c | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-smart.o `test -f 'smart.c' || echo '$(srcdir)/'`smart.c |  | ||||||
| 
 | 
 | ||||||
| rufus-smart.obj: smart.c | rufus-smart.obj: smart.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-smart.obj `if test -f 'smart.c'; then $(CYGPATH_W) 'smart.c'; else $(CYGPATH_W) '$(srcdir)/smart.c'; fi` | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-smart.obj `if test -f 'smart.c'; then $(CYGPATH_W) 'smart.c'; else $(CYGPATH_W) '$(srcdir)/smart.c'; fi` |  | ||||||
| 
 | 
 | ||||||
| rufus-stdio.o: stdio.c | rufus-stdio.o: stdio.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-stdio.o `test -f 'stdio.c' || echo '$(srcdir)/'`stdio.c | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-stdio.o `test -f 'stdio.c' || echo '$(srcdir)/'`stdio.c |  | ||||||
| 
 | 
 | ||||||
| rufus-stdio.obj: stdio.c | rufus-stdio.obj: stdio.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-stdio.obj `if test -f 'stdio.c'; then $(CYGPATH_W) 'stdio.c'; else $(CYGPATH_W) '$(srcdir)/stdio.c'; fi` | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-stdio.obj `if test -f 'stdio.c'; then $(CYGPATH_W) 'stdio.c'; else $(CYGPATH_W) '$(srcdir)/stdio.c'; fi` |  | ||||||
| 
 | 
 | ||||||
| rufus-stdfn.o: stdfn.c | rufus-stdfn.o: stdfn.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-stdfn.o `test -f 'stdfn.c' || echo '$(srcdir)/'`stdfn.c | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-stdfn.o `test -f 'stdfn.c' || echo '$(srcdir)/'`stdfn.c |  | ||||||
| 
 | 
 | ||||||
| rufus-stdfn.obj: stdfn.c | rufus-stdfn.obj: stdfn.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-stdfn.obj `if test -f 'stdfn.c'; then $(CYGPATH_W) 'stdfn.c'; else $(CYGPATH_W) '$(srcdir)/stdfn.c'; fi` | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-stdfn.obj `if test -f 'stdfn.c'; then $(CYGPATH_W) 'stdfn.c'; else $(CYGPATH_W) '$(srcdir)/stdfn.c'; fi` |  | ||||||
| 
 | 
 | ||||||
| rufus-stdlg.o: stdlg.c | rufus-stdlg.o: stdlg.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-stdlg.o `test -f 'stdlg.c' || echo '$(srcdir)/'`stdlg.c | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-stdlg.o `test -f 'stdlg.c' || echo '$(srcdir)/'`stdlg.c |  | ||||||
| 
 | 
 | ||||||
| rufus-stdlg.obj: stdlg.c | rufus-stdlg.obj: stdlg.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-stdlg.obj `if test -f 'stdlg.c'; then $(CYGPATH_W) 'stdlg.c'; else $(CYGPATH_W) '$(srcdir)/stdlg.c'; fi` | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-stdlg.obj `if test -f 'stdlg.c'; then $(CYGPATH_W) 'stdlg.c'; else $(CYGPATH_W) '$(srcdir)/stdlg.c'; fi` |  | ||||||
| 
 | 
 | ||||||
| rufus-rufus.o: rufus.c | rufus-rufus.o: rufus.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-rufus.o `test -f 'rufus.c' || echo '$(srcdir)/'`rufus.c | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-rufus.o `test -f 'rufus.c' || echo '$(srcdir)/'`rufus.c |  | ||||||
| 
 | 
 | ||||||
| rufus-rufus.obj: rufus.c | rufus-rufus.obj: rufus.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-rufus.obj `if test -f 'rufus.c'; then $(CYGPATH_W) 'rufus.c'; else $(CYGPATH_W) '$(srcdir)/rufus.c'; fi` | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-rufus.obj `if test -f 'rufus.c'; then $(CYGPATH_W) 'rufus.c'; else $(CYGPATH_W) '$(srcdir)/rufus.c'; fi` |  | ||||||
| 
 | 
 | ||||||
| # This directory's subdirectories are mostly independent; you can cd
 | # This directory's subdirectories are mostly independent; you can cd
 | ||||||
| # into them and run `make' without going through this Makefile.
 | # into them and run 'make' without going through this Makefile.
 | ||||||
| # To change the values of `make' variables: instead of editing Makefiles,
 | # To change the values of 'make' variables: instead of editing Makefiles,
 | ||||||
| # (1) if the variable is set in `config.status', edit `config.status'
 | # (1) if the variable is set in 'config.status', edit 'config.status'
 | ||||||
| #     (which will cause the Makefiles to be regenerated when you run `make');
 | #     (which will cause the Makefiles to be regenerated when you run 'make');
 | ||||||
| # (2) otherwise, pass the desired values on the `make' command line.
 | # (2) otherwise, pass the desired values on the 'make' command line.
 | ||||||
| $(RECURSIVE_TARGETS): | $(am__recursive_targets): | ||||||
| 	@fail= failcom='exit 1'; \
 | 	@fail=; \
 | ||||||
| 	for f in x $$MAKEFLAGS; do \
 | 	if $(am__make_keepgoing); then \
 | ||||||
| 	  case $$f in \
 | 	  failcom='fail=yes'; \
 | ||||||
| 	    *=* | --[!k]*);; \
 | 	else \
 | ||||||
| 	    *k*) failcom='fail=yes';; \
 | 	  failcom='exit 1'; \
 | ||||||
| 	  esac; \
 | 	fi; \
 | ||||||
| 	done; \
 |  | ||||||
| 	dot_seen=no; \
 | 	dot_seen=no; \
 | ||||||
| 	target=`echo $@ | sed s/-recursive//`; \
 | 	target=`echo $@ | sed s/-recursive//`; \
 | ||||||
| 	list='$(SUBDIRS)'; for subdir in $$list; do \
 | 	case "$@" in \
 | ||||||
|  | 	  distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
 | ||||||
|  | 	  *) list='$(SUBDIRS)' ;; \
 | ||||||
|  | 	esac; \
 | ||||||
|  | 	for subdir in $$list; do \
 | ||||||
| 	  echo "Making $$target in $$subdir"; \
 | 	  echo "Making $$target in $$subdir"; \
 | ||||||
| 	  if test "$$subdir" = "."; then \
 | 	  if test "$$subdir" = "."; then \
 | ||||||
| 	    dot_seen=yes; \
 | 	    dot_seen=yes; \
 | ||||||
|  | @ -425,57 +470,12 @@ $(RECURSIVE_TARGETS): | ||||||
| 	  $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
 | 	  $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
 | ||||||
| 	fi; test -z "$$fail" | 	fi; test -z "$$fail" | ||||||
| 
 | 
 | ||||||
| $(RECURSIVE_CLEAN_TARGETS): | ID: $(am__tagged_files) | ||||||
| 	@fail= failcom='exit 1'; \
 | 	$(am__define_uniq_tagged_files); mkid -fID $$unique | ||||||
| 	for f in x $$MAKEFLAGS; do \
 | tags: tags-recursive | ||||||
| 	  case $$f in \
 | TAGS: tags | ||||||
| 	    *=* | --[!k]*);; \
 |  | ||||||
| 	    *k*) failcom='fail=yes';; \
 |  | ||||||
| 	  esac; \
 |  | ||||||
| 	done; \
 |  | ||||||
| 	dot_seen=no; \
 |  | ||||||
| 	case "$@" in \
 |  | ||||||
| 	  distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
 |  | ||||||
| 	  *) list='$(SUBDIRS)' ;; \
 |  | ||||||
| 	esac; \
 |  | ||||||
| 	rev=''; for subdir in $$list; do \
 |  | ||||||
| 	  if test "$$subdir" = "."; then :; else \
 |  | ||||||
| 	    rev="$$subdir $$rev"; \
 |  | ||||||
| 	  fi; \
 |  | ||||||
| 	done; \
 |  | ||||||
| 	rev="$$rev ."; \
 |  | ||||||
| 	target=`echo $@ | sed s/-recursive//`; \
 |  | ||||||
| 	for subdir in $$rev; do \
 |  | ||||||
| 	  echo "Making $$target in $$subdir"; \
 |  | ||||||
| 	  if test "$$subdir" = "."; then \
 |  | ||||||
| 	    local_target="$$target-am"; \
 |  | ||||||
| 	  else \
 |  | ||||||
| 	    local_target="$$target"; \
 |  | ||||||
| 	  fi; \
 |  | ||||||
| 	  ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
 |  | ||||||
| 	  || eval $$failcom; \
 |  | ||||||
| 	done && test -z "$$fail" |  | ||||||
| tags-recursive: |  | ||||||
| 	list='$(SUBDIRS)'; for subdir in $$list; do \
 |  | ||||||
| 	  test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
 |  | ||||||
| 	done |  | ||||||
| ctags-recursive: |  | ||||||
| 	list='$(SUBDIRS)'; for subdir in $$list; do \
 |  | ||||||
| 	  test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
 |  | ||||||
| 	done |  | ||||||
| 
 | 
 | ||||||
| ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) | tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) | ||||||
| 	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
 |  | ||||||
| 	unique=`for i in $$list; do \
 |  | ||||||
| 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 |  | ||||||
| 	  done | \
 |  | ||||||
| 	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
 |  | ||||||
| 	      END { if (nonempty) { for (i in files) print i; }; }'`; \
 |  | ||||||
| 	mkid -fID $$unique |  | ||||||
| tags: TAGS |  | ||||||
| 
 |  | ||||||
| TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \ |  | ||||||
| 		$(TAGS_FILES) $(LISP) |  | ||||||
| 	set x; \
 | 	set x; \
 | ||||||
| 	here=`pwd`; \
 | 	here=`pwd`; \
 | ||||||
| 	if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
 | 	if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
 | ||||||
|  | @ -491,12 +491,7 @@ TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \ | ||||||
| 	      set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
 | 	      set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
 | ||||||
| 	  fi; \
 | 	  fi; \
 | ||||||
| 	done; \
 | 	done; \
 | ||||||
| 	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 | 	$(am__define_uniq_tagged_files); \
 | ||||||
| 	unique=`for i in $$list; do \
 |  | ||||||
| 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 |  | ||||||
| 	  done | \
 |  | ||||||
| 	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
 |  | ||||||
| 	      END { if (nonempty) { for (i in files) print i; }; }'`; \
 |  | ||||||
| 	shift; \
 | 	shift; \
 | ||||||
| 	if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
 | 	if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
 | ||||||
| 	  test -n "$$unique" || unique=$$empty_fix; \
 | 	  test -n "$$unique" || unique=$$empty_fix; \
 | ||||||
|  | @ -508,15 +503,11 @@ TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \ | ||||||
| 	      $$unique; \
 | 	      $$unique; \
 | ||||||
| 	  fi; \
 | 	  fi; \
 | ||||||
| 	fi | 	fi | ||||||
| ctags: CTAGS | ctags: ctags-recursive | ||||||
| CTAGS: ctags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \ | 
 | ||||||
| 		$(TAGS_FILES) $(LISP) | CTAGS: ctags | ||||||
| 	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 | ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) | ||||||
| 	unique=`for i in $$list; do \
 | 	$(am__define_uniq_tagged_files); \
 | ||||||
| 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 |  | ||||||
| 	  done | \
 |  | ||||||
| 	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
 |  | ||||||
| 	      END { if (nonempty) { for (i in files) print i; }; }'`; \
 |  | ||||||
| 	test -z "$(CTAGS_ARGS)$$unique" \
 | 	test -z "$(CTAGS_ARGS)$$unique" \
 | ||||||
| 	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
 | 	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
 | ||||||
| 	     $$unique | 	     $$unique | ||||||
|  | @ -525,6 +516,21 @@ GTAGS: | ||||||
| 	here=`$(am__cd) $(top_builddir) && pwd` \
 | 	here=`$(am__cd) $(top_builddir) && pwd` \
 | ||||||
| 	  && $(am__cd) $(top_srcdir) \
 | 	  && $(am__cd) $(top_srcdir) \
 | ||||||
| 	  && gtags -i $(GTAGS_ARGS) "$$here" | 	  && gtags -i $(GTAGS_ARGS) "$$here" | ||||||
|  | cscopelist: cscopelist-recursive | ||||||
|  | 
 | ||||||
|  | cscopelist-am: $(am__tagged_files) | ||||||
|  | 	list='$(am__tagged_files)'; \
 | ||||||
|  | 	case "$(srcdir)" in \
 | ||||||
|  | 	  [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
 | ||||||
|  | 	  *) sdir=$(subdir)/$(srcdir) ;; \
 | ||||||
|  | 	esac; \
 | ||||||
|  | 	for i in $$list; do \
 | ||||||
|  | 	  if test -f "$$i"; then \
 | ||||||
|  | 	    echo "$(subdir)/$$i"; \
 | ||||||
|  | 	  else \
 | ||||||
|  | 	    echo "$$sdir/$$i"; \
 | ||||||
|  | 	  fi; \
 | ||||||
|  | 	done >> $(top_builddir)/cscope.files | ||||||
| 
 | 
 | ||||||
| distclean-tags: | distclean-tags: | ||||||
| 	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags | 	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags | ||||||
|  | @ -543,10 +549,15 @@ install-am: all-am | ||||||
| 
 | 
 | ||||||
| installcheck: installcheck-recursive | installcheck: installcheck-recursive | ||||||
| install-strip: | install-strip: | ||||||
|  | 	if test -z '$(STRIP)'; then \
 | ||||||
| 	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 | 	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 | ||||||
| 	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 | 	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 | ||||||
| 	  `test -z '$(STRIP)' || \
 | 	      install; \
 | ||||||
| 	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install | 	else \
 | ||||||
|  | 	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 | ||||||
|  | 	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 | ||||||
|  | 	    "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
 | ||||||
|  | 	fi | ||||||
| mostlyclean-generic: | mostlyclean-generic: | ||||||
| 
 | 
 | ||||||
| clean-generic: | clean-generic: | ||||||
|  | @ -625,22 +636,21 @@ ps-am: | ||||||
| 
 | 
 | ||||||
| uninstall-am: | uninstall-am: | ||||||
| 
 | 
 | ||||||
| .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \ | .MAKE: $(am__recursive_targets) install-am install-strip | ||||||
| 	install-am install-strip tags-recursive |  | ||||||
| 
 | 
 | ||||||
| .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ | .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ | ||||||
| 	all all-am check check-am clean clean-generic \
 | 	check-am clean clean-generic clean-noinstPROGRAMS \
 | ||||||
| 	clean-noinstPROGRAMS ctags ctags-recursive distclean \
 | 	cscopelist-am ctags ctags-am distclean distclean-compile \
 | ||||||
| 	distclean-compile distclean-generic distclean-tags dvi dvi-am \
 | 	distclean-generic distclean-tags dvi dvi-am html html-am info \
 | ||||||
| 	html html-am info info-am install install-am install-data \
 | 	info-am install install-am install-data install-data-am \
 | ||||||
| 	install-data-am install-dvi install-dvi-am install-exec \
 | 	install-dvi install-dvi-am install-exec install-exec-am \
 | ||||||
| 	install-exec-am install-html install-html-am install-info \
 | 	install-html install-html-am install-info install-info-am \
 | ||||||
| 	install-info-am install-man install-pdf install-pdf-am \
 | 	install-man install-pdf install-pdf-am install-ps \
 | ||||||
| 	install-ps install-ps-am install-strip installcheck \
 | 	install-ps-am install-strip installcheck installcheck-am \
 | ||||||
| 	installcheck-am installdirs installdirs-am maintainer-clean \
 | 	installdirs installdirs-am maintainer-clean \
 | ||||||
| 	maintainer-clean-generic mostlyclean mostlyclean-compile \
 | 	maintainer-clean-generic mostlyclean mostlyclean-compile \
 | ||||||
| 	mostlyclean-generic pdf pdf-am ps ps-am tags tags-recursive \
 | 	mostlyclean-generic pdf pdf-am ps ps-am tags tags-am uninstall \
 | ||||||
| 	uninstall uninstall-am | 	uninstall-am | ||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
| %_rc.o: %.rc ../res/localization/embedded.loc | %_rc.o: %.rc ../res/localization/embedded.loc | ||||||
|  |  | ||||||
|  | @ -1,9 +1,8 @@ | ||||||
| # Makefile.in generated by automake 1.11.1 from Makefile.am.
 | # Makefile.in generated by automake 1.14.1 from Makefile.am.
 | ||||||
| # @configure_input@
 | # @configure_input@
 | ||||||
| 
 | 
 | ||||||
| # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
 | # Copyright (C) 1994-2013 Free Software Foundation, Inc.
 | ||||||
| # 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
 | 
 | ||||||
| # Inc.
 |  | ||||||
| # This Makefile.in is free software; the Free Software Foundation
 | # This Makefile.in is free software; the Free Software Foundation
 | ||||||
| # gives unlimited permission to copy and/or distribute it,
 | # gives unlimited permission to copy and/or distribute it,
 | ||||||
| # with or without modifications, as long as this notice is preserved.
 | # with or without modifications, as long as this notice is preserved.
 | ||||||
|  | @ -16,6 +15,51 @@ | ||||||
| @SET_MAKE@ | @SET_MAKE@ | ||||||
| 
 | 
 | ||||||
| VPATH = @srcdir@ | VPATH = @srcdir@ | ||||||
|  | am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' | ||||||
|  | am__make_running_with_option = \
 | ||||||
|  |   case $${target_option-} in \
 | ||||||
|  |       ?) ;; \
 | ||||||
|  |       *) echo "am__make_running_with_option: internal error: invalid" \
 | ||||||
|  |               "target option '$${target_option-}' specified" >&2; \
 | ||||||
|  |          exit 1;; \
 | ||||||
|  |   esac; \
 | ||||||
|  |   has_opt=no; \
 | ||||||
|  |   sane_makeflags=$$MAKEFLAGS; \
 | ||||||
|  |   if $(am__is_gnu_make); then \
 | ||||||
|  |     sane_makeflags=$$MFLAGS; \
 | ||||||
|  |   else \
 | ||||||
|  |     case $$MAKEFLAGS in \
 | ||||||
|  |       *\\[\ \	]*) \
 | ||||||
|  |         bs=\\; \
 | ||||||
|  |         sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
 | ||||||
|  |           | sed "s/$$bs$$bs[$$bs $$bs	]*//g"`;; \
 | ||||||
|  |     esac; \
 | ||||||
|  |   fi; \
 | ||||||
|  |   skip_next=no; \
 | ||||||
|  |   strip_trailopt () \
 | ||||||
|  |   { \
 | ||||||
|  |     flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
 | ||||||
|  |   }; \
 | ||||||
|  |   for flg in $$sane_makeflags; do \
 | ||||||
|  |     test $$skip_next = yes && { skip_next=no; continue; }; \
 | ||||||
|  |     case $$flg in \
 | ||||||
|  |       *=*|--*) continue;; \
 | ||||||
|  |         -*I) strip_trailopt 'I'; skip_next=yes;; \
 | ||||||
|  |       -*I?*) strip_trailopt 'I';; \
 | ||||||
|  |         -*O) strip_trailopt 'O'; skip_next=yes;; \
 | ||||||
|  |       -*O?*) strip_trailopt 'O';; \
 | ||||||
|  |         -*l) strip_trailopt 'l'; skip_next=yes;; \
 | ||||||
|  |       -*l?*) strip_trailopt 'l';; \
 | ||||||
|  |       -[dEDm]) skip_next=yes;; \
 | ||||||
|  |       -[JT]) skip_next=yes;; \
 | ||||||
|  |     esac; \
 | ||||||
|  |     case $$flg in \
 | ||||||
|  |       *$$target_option*) has_opt=yes; break;; \
 | ||||||
|  |     esac; \
 | ||||||
|  |   done; \
 | ||||||
|  |   test $$has_opt = yes | ||||||
|  | am__make_dryrun = (target_option=n; $(am__make_running_with_option)) | ||||||
|  | am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) | ||||||
| pkgdatadir = $(datadir)/@PACKAGE@ | pkgdatadir = $(datadir)/@PACKAGE@ | ||||||
| pkgincludedir = $(includedir)/@PACKAGE@ | pkgincludedir = $(includedir)/@PACKAGE@ | ||||||
| pkglibdir = $(libdir)/@PACKAGE@ | pkglibdir = $(libdir)/@PACKAGE@ | ||||||
|  | @ -44,12 +88,10 @@ CONFIG_CLEAN_VPATH_FILES = | ||||||
| LIBRARIES = $(noinst_LIBRARIES) | LIBRARIES = $(noinst_LIBRARIES) | ||||||
| AR = ar | AR = ar | ||||||
| ARFLAGS = cru | ARFLAGS = cru | ||||||
| AM_V_AR = $(am__v_AR_$(V)) | AM_V_AR = $(am__v_AR_@AM_V@) | ||||||
| am__v_AR_ = $(am__v_AR_$(AM_DEFAULT_VERBOSITY)) | am__v_AR_ = $(am__v_AR_@AM_DEFAULT_V@) | ||||||
| am__v_AR_0 = @echo "  AR      " $@; | am__v_AR_0 = @echo "  AR      " $@; | ||||||
| AM_V_at = $(am__v_at_$(V)) | am__v_AR_1 =  | ||||||
| am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) |  | ||||||
| am__v_at_0 = @ |  | ||||||
| libdriver_a_AR = $(AR) $(ARFLAGS) | libdriver_a_AR = $(AR) $(ARFLAGS) | ||||||
| libdriver_a_LIBADD = | libdriver_a_LIBADD = | ||||||
| am_libdriver_a_OBJECTS = libdriver_a-disc.$(OBJEXT) \
 | am_libdriver_a_OBJECTS = libdriver_a-disc.$(OBJEXT) \
 | ||||||
|  | @ -59,26 +101,60 @@ am_libdriver_a_OBJECTS = libdriver_a-disc.$(OBJEXT) \ | ||||||
| 	libdriver_a-util.$(OBJEXT) libdriver_a-_cdio_stdio.$(OBJEXT) \
 | 	libdriver_a-util.$(OBJEXT) libdriver_a-_cdio_stdio.$(OBJEXT) \
 | ||||||
| 	libdriver_a-_cdio_stream.$(OBJEXT) libdriver_a-utf8.$(OBJEXT) | 	libdriver_a-_cdio_stream.$(OBJEXT) libdriver_a-utf8.$(OBJEXT) | ||||||
| libdriver_a_OBJECTS = $(am_libdriver_a_OBJECTS) | libdriver_a_OBJECTS = $(am_libdriver_a_OBJECTS) | ||||||
|  | AM_V_P = $(am__v_P_@AM_V@) | ||||||
|  | am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) | ||||||
|  | am__v_P_0 = false | ||||||
|  | am__v_P_1 = : | ||||||
|  | AM_V_GEN = $(am__v_GEN_@AM_V@) | ||||||
|  | am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) | ||||||
|  | am__v_GEN_0 = @echo "  GEN     " $@; | ||||||
|  | am__v_GEN_1 =  | ||||||
|  | AM_V_at = $(am__v_at_@AM_V@) | ||||||
|  | am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) | ||||||
|  | am__v_at_0 = @ | ||||||
|  | am__v_at_1 =  | ||||||
| DEFAULT_INCLUDES = -I.@am__isrc@ | DEFAULT_INCLUDES = -I.@am__isrc@ | ||||||
| depcomp = | depcomp = | ||||||
| am__depfiles_maybe = | am__depfiles_maybe = | ||||||
| AM_V_lt = $(am__v_lt_$(V)) | AM_V_lt = $(am__v_lt_@AM_V@) | ||||||
| am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) | am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) | ||||||
| am__v_lt_0 = --silent | am__v_lt_0 = --silent | ||||||
|  | am__v_lt_1 =  | ||||||
| COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
 | COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
 | ||||||
| 	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) | 	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) | ||||||
| AM_V_CC = $(am__v_CC_$(V)) | AM_V_CC = $(am__v_CC_@AM_V@) | ||||||
| am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) | am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) | ||||||
| am__v_CC_0 = @echo "  CC      " $@; | am__v_CC_0 = @echo "  CC      " $@; | ||||||
|  | am__v_CC_1 =  | ||||||
| CCLD = $(CC) | CCLD = $(CC) | ||||||
| LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ | LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ | ||||||
| AM_V_CCLD = $(am__v_CCLD_$(V)) | AM_V_CCLD = $(am__v_CCLD_@AM_V@) | ||||||
| am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) | am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) | ||||||
| am__v_CCLD_0 = @echo "  CCLD    " $@; | am__v_CCLD_0 = @echo "  CCLD    " $@; | ||||||
| AM_V_GEN = $(am__v_GEN_$(V)) | am__v_CCLD_1 =  | ||||||
| am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) |  | ||||||
| am__v_GEN_0 = @echo "  GEN   " $@; |  | ||||||
| SOURCES = $(libdriver_a_SOURCES) | SOURCES = $(libdriver_a_SOURCES) | ||||||
|  | am__can_run_installinfo = \
 | ||||||
|  |   case $$AM_UPDATE_INFO_DIR in \
 | ||||||
|  |     n|no|NO) false;; \
 | ||||||
|  |     *) (install-info --version) >/dev/null 2>&1;; \
 | ||||||
|  |   esac | ||||||
|  | am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) | ||||||
|  | # Read a list of newline-separated strings from the standard input,
 | ||||||
|  | # and print each of them once, without duplicates.  Input order is
 | ||||||
|  | # *not* preserved.
 | ||||||
|  | am__uniquify_input = $(AWK) '\
 | ||||||
|  |   BEGIN { nonempty = 0; } \
 | ||||||
|  |   { items[$$0] = 1; nonempty = 1; } \
 | ||||||
|  |   END { if (nonempty) { for (i in items) print i; }; } \
 | ||||||
|  | ' | ||||||
|  | # Make sure the list of sources is unique.  This is necessary because,
 | ||||||
|  | # e.g., the same source file might be shared among _SOURCES variables
 | ||||||
|  | # for different programs/libraries.
 | ||||||
|  | am__define_uniq_tagged_files = \
 | ||||||
|  |   list='$(am__tagged_files)'; \
 | ||||||
|  |   unique=`for i in $$list; do \
 | ||||||
|  |     if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 | ||||||
|  |   done | $(am__uniquify_input)` | ||||||
| ETAGS = etags | ETAGS = etags | ||||||
| CTAGS = ctags | CTAGS = ctags | ||||||
| ACLOCAL = @ACLOCAL@ | ACLOCAL = @ACLOCAL@ | ||||||
|  | @ -210,7 +286,8 @@ $(am__aclocal_m4_deps): | ||||||
| 
 | 
 | ||||||
| clean-noinstLIBRARIES: | clean-noinstLIBRARIES: | ||||||
| 	-test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) | 	-test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) | ||||||
| libdriver.a: $(libdriver_a_OBJECTS) $(libdriver_a_DEPENDENCIES)  | 
 | ||||||
|  | libdriver.a: $(libdriver_a_OBJECTS) $(libdriver_a_DEPENDENCIES) $(EXTRA_libdriver_a_DEPENDENCIES)  | ||||||
| 	$(AM_V_at)-rm -f libdriver.a | 	$(AM_V_at)-rm -f libdriver.a | ||||||
| 	$(AM_V_AR)$(libdriver_a_AR) libdriver.a $(libdriver_a_OBJECTS) $(libdriver_a_LIBADD) | 	$(AM_V_AR)$(libdriver_a_AR) libdriver.a $(libdriver_a_OBJECTS) $(libdriver_a_LIBADD) | ||||||
| 	$(AM_V_at)$(RANLIB) libdriver.a | 	$(AM_V_at)$(RANLIB) libdriver.a | ||||||
|  | @ -222,121 +299,86 @@ distclean-compile: | ||||||
| 	-rm -f *.tab.c | 	-rm -f *.tab.c | ||||||
| 
 | 
 | ||||||
| .c.o: | .c.o: | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(COMPILE) -c -o $@ $< | ||||||
| 	$(COMPILE) -c $< |  | ||||||
| 
 | 
 | ||||||
| .c.obj: | .c.obj: | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` | ||||||
| 	$(COMPILE) -c `$(CYGPATH_W) '$<'` |  | ||||||
| 
 | 
 | ||||||
| libdriver_a-disc.o: disc.c | libdriver_a-disc.o: disc.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdriver_a_CFLAGS) $(CFLAGS) -c -o libdriver_a-disc.o `test -f 'disc.c' || echo '$(srcdir)/'`disc.c | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdriver_a_CFLAGS) $(CFLAGS) -c -o libdriver_a-disc.o `test -f 'disc.c' || echo '$(srcdir)/'`disc.c |  | ||||||
| 
 | 
 | ||||||
| libdriver_a-disc.obj: disc.c | libdriver_a-disc.obj: disc.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdriver_a_CFLAGS) $(CFLAGS) -c -o libdriver_a-disc.obj `if test -f 'disc.c'; then $(CYGPATH_W) 'disc.c'; else $(CYGPATH_W) '$(srcdir)/disc.c'; fi` | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdriver_a_CFLAGS) $(CFLAGS) -c -o libdriver_a-disc.obj `if test -f 'disc.c'; then $(CYGPATH_W) 'disc.c'; else $(CYGPATH_W) '$(srcdir)/disc.c'; fi` |  | ||||||
| 
 | 
 | ||||||
| libdriver_a-ds.o: ds.c | libdriver_a-ds.o: ds.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdriver_a_CFLAGS) $(CFLAGS) -c -o libdriver_a-ds.o `test -f 'ds.c' || echo '$(srcdir)/'`ds.c | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdriver_a_CFLAGS) $(CFLAGS) -c -o libdriver_a-ds.o `test -f 'ds.c' || echo '$(srcdir)/'`ds.c |  | ||||||
| 
 | 
 | ||||||
| libdriver_a-ds.obj: ds.c | libdriver_a-ds.obj: ds.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdriver_a_CFLAGS) $(CFLAGS) -c -o libdriver_a-ds.obj `if test -f 'ds.c'; then $(CYGPATH_W) 'ds.c'; else $(CYGPATH_W) '$(srcdir)/ds.c'; fi` | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdriver_a_CFLAGS) $(CFLAGS) -c -o libdriver_a-ds.obj `if test -f 'ds.c'; then $(CYGPATH_W) 'ds.c'; else $(CYGPATH_W) '$(srcdir)/ds.c'; fi` |  | ||||||
| 
 | 
 | ||||||
| libdriver_a-logging.o: logging.c | libdriver_a-logging.o: logging.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdriver_a_CFLAGS) $(CFLAGS) -c -o libdriver_a-logging.o `test -f 'logging.c' || echo '$(srcdir)/'`logging.c | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdriver_a_CFLAGS) $(CFLAGS) -c -o libdriver_a-logging.o `test -f 'logging.c' || echo '$(srcdir)/'`logging.c |  | ||||||
| 
 | 
 | ||||||
| libdriver_a-logging.obj: logging.c | libdriver_a-logging.obj: logging.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdriver_a_CFLAGS) $(CFLAGS) -c -o libdriver_a-logging.obj `if test -f 'logging.c'; then $(CYGPATH_W) 'logging.c'; else $(CYGPATH_W) '$(srcdir)/logging.c'; fi` | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdriver_a_CFLAGS) $(CFLAGS) -c -o libdriver_a-logging.obj `if test -f 'logging.c'; then $(CYGPATH_W) 'logging.c'; else $(CYGPATH_W) '$(srcdir)/logging.c'; fi` |  | ||||||
| 
 | 
 | ||||||
| libdriver_a-memory.o: memory.c | libdriver_a-memory.o: memory.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdriver_a_CFLAGS) $(CFLAGS) -c -o libdriver_a-memory.o `test -f 'memory.c' || echo '$(srcdir)/'`memory.c | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdriver_a_CFLAGS) $(CFLAGS) -c -o libdriver_a-memory.o `test -f 'memory.c' || echo '$(srcdir)/'`memory.c |  | ||||||
| 
 | 
 | ||||||
| libdriver_a-memory.obj: memory.c | libdriver_a-memory.obj: memory.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdriver_a_CFLAGS) $(CFLAGS) -c -o libdriver_a-memory.obj `if test -f 'memory.c'; then $(CYGPATH_W) 'memory.c'; else $(CYGPATH_W) '$(srcdir)/memory.c'; fi` | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdriver_a_CFLAGS) $(CFLAGS) -c -o libdriver_a-memory.obj `if test -f 'memory.c'; then $(CYGPATH_W) 'memory.c'; else $(CYGPATH_W) '$(srcdir)/memory.c'; fi` |  | ||||||
| 
 | 
 | ||||||
| libdriver_a-read.o: read.c | libdriver_a-read.o: read.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdriver_a_CFLAGS) $(CFLAGS) -c -o libdriver_a-read.o `test -f 'read.c' || echo '$(srcdir)/'`read.c | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdriver_a_CFLAGS) $(CFLAGS) -c -o libdriver_a-read.o `test -f 'read.c' || echo '$(srcdir)/'`read.c |  | ||||||
| 
 | 
 | ||||||
| libdriver_a-read.obj: read.c | libdriver_a-read.obj: read.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdriver_a_CFLAGS) $(CFLAGS) -c -o libdriver_a-read.obj `if test -f 'read.c'; then $(CYGPATH_W) 'read.c'; else $(CYGPATH_W) '$(srcdir)/read.c'; fi` | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdriver_a_CFLAGS) $(CFLAGS) -c -o libdriver_a-read.obj `if test -f 'read.c'; then $(CYGPATH_W) 'read.c'; else $(CYGPATH_W) '$(srcdir)/read.c'; fi` |  | ||||||
| 
 | 
 | ||||||
| libdriver_a-sector.o: sector.c | libdriver_a-sector.o: sector.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdriver_a_CFLAGS) $(CFLAGS) -c -o libdriver_a-sector.o `test -f 'sector.c' || echo '$(srcdir)/'`sector.c | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdriver_a_CFLAGS) $(CFLAGS) -c -o libdriver_a-sector.o `test -f 'sector.c' || echo '$(srcdir)/'`sector.c |  | ||||||
| 
 | 
 | ||||||
| libdriver_a-sector.obj: sector.c | libdriver_a-sector.obj: sector.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdriver_a_CFLAGS) $(CFLAGS) -c -o libdriver_a-sector.obj `if test -f 'sector.c'; then $(CYGPATH_W) 'sector.c'; else $(CYGPATH_W) '$(srcdir)/sector.c'; fi` | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdriver_a_CFLAGS) $(CFLAGS) -c -o libdriver_a-sector.obj `if test -f 'sector.c'; then $(CYGPATH_W) 'sector.c'; else $(CYGPATH_W) '$(srcdir)/sector.c'; fi` |  | ||||||
| 
 | 
 | ||||||
| libdriver_a-track.o: track.c | libdriver_a-track.o: track.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdriver_a_CFLAGS) $(CFLAGS) -c -o libdriver_a-track.o `test -f 'track.c' || echo '$(srcdir)/'`track.c | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdriver_a_CFLAGS) $(CFLAGS) -c -o libdriver_a-track.o `test -f 'track.c' || echo '$(srcdir)/'`track.c |  | ||||||
| 
 | 
 | ||||||
| libdriver_a-track.obj: track.c | libdriver_a-track.obj: track.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdriver_a_CFLAGS) $(CFLAGS) -c -o libdriver_a-track.obj `if test -f 'track.c'; then $(CYGPATH_W) 'track.c'; else $(CYGPATH_W) '$(srcdir)/track.c'; fi` | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdriver_a_CFLAGS) $(CFLAGS) -c -o libdriver_a-track.obj `if test -f 'track.c'; then $(CYGPATH_W) 'track.c'; else $(CYGPATH_W) '$(srcdir)/track.c'; fi` |  | ||||||
| 
 | 
 | ||||||
| libdriver_a-util.o: util.c | libdriver_a-util.o: util.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdriver_a_CFLAGS) $(CFLAGS) -c -o libdriver_a-util.o `test -f 'util.c' || echo '$(srcdir)/'`util.c | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdriver_a_CFLAGS) $(CFLAGS) -c -o libdriver_a-util.o `test -f 'util.c' || echo '$(srcdir)/'`util.c |  | ||||||
| 
 | 
 | ||||||
| libdriver_a-util.obj: util.c | libdriver_a-util.obj: util.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdriver_a_CFLAGS) $(CFLAGS) -c -o libdriver_a-util.obj `if test -f 'util.c'; then $(CYGPATH_W) 'util.c'; else $(CYGPATH_W) '$(srcdir)/util.c'; fi` | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdriver_a_CFLAGS) $(CFLAGS) -c -o libdriver_a-util.obj `if test -f 'util.c'; then $(CYGPATH_W) 'util.c'; else $(CYGPATH_W) '$(srcdir)/util.c'; fi` |  | ||||||
| 
 | 
 | ||||||
| libdriver_a-_cdio_stdio.o: _cdio_stdio.c | libdriver_a-_cdio_stdio.o: _cdio_stdio.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdriver_a_CFLAGS) $(CFLAGS) -c -o libdriver_a-_cdio_stdio.o `test -f '_cdio_stdio.c' || echo '$(srcdir)/'`_cdio_stdio.c | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdriver_a_CFLAGS) $(CFLAGS) -c -o libdriver_a-_cdio_stdio.o `test -f '_cdio_stdio.c' || echo '$(srcdir)/'`_cdio_stdio.c |  | ||||||
| 
 | 
 | ||||||
| libdriver_a-_cdio_stdio.obj: _cdio_stdio.c | libdriver_a-_cdio_stdio.obj: _cdio_stdio.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdriver_a_CFLAGS) $(CFLAGS) -c -o libdriver_a-_cdio_stdio.obj `if test -f '_cdio_stdio.c'; then $(CYGPATH_W) '_cdio_stdio.c'; else $(CYGPATH_W) '$(srcdir)/_cdio_stdio.c'; fi` | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdriver_a_CFLAGS) $(CFLAGS) -c -o libdriver_a-_cdio_stdio.obj `if test -f '_cdio_stdio.c'; then $(CYGPATH_W) '_cdio_stdio.c'; else $(CYGPATH_W) '$(srcdir)/_cdio_stdio.c'; fi` |  | ||||||
| 
 | 
 | ||||||
| libdriver_a-_cdio_stream.o: _cdio_stream.c | libdriver_a-_cdio_stream.o: _cdio_stream.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdriver_a_CFLAGS) $(CFLAGS) -c -o libdriver_a-_cdio_stream.o `test -f '_cdio_stream.c' || echo '$(srcdir)/'`_cdio_stream.c | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdriver_a_CFLAGS) $(CFLAGS) -c -o libdriver_a-_cdio_stream.o `test -f '_cdio_stream.c' || echo '$(srcdir)/'`_cdio_stream.c |  | ||||||
| 
 | 
 | ||||||
| libdriver_a-_cdio_stream.obj: _cdio_stream.c | libdriver_a-_cdio_stream.obj: _cdio_stream.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdriver_a_CFLAGS) $(CFLAGS) -c -o libdriver_a-_cdio_stream.obj `if test -f '_cdio_stream.c'; then $(CYGPATH_W) '_cdio_stream.c'; else $(CYGPATH_W) '$(srcdir)/_cdio_stream.c'; fi` | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdriver_a_CFLAGS) $(CFLAGS) -c -o libdriver_a-_cdio_stream.obj `if test -f '_cdio_stream.c'; then $(CYGPATH_W) '_cdio_stream.c'; else $(CYGPATH_W) '$(srcdir)/_cdio_stream.c'; fi` |  | ||||||
| 
 | 
 | ||||||
| libdriver_a-utf8.o: utf8.c | libdriver_a-utf8.o: utf8.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdriver_a_CFLAGS) $(CFLAGS) -c -o libdriver_a-utf8.o `test -f 'utf8.c' || echo '$(srcdir)/'`utf8.c | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdriver_a_CFLAGS) $(CFLAGS) -c -o libdriver_a-utf8.o `test -f 'utf8.c' || echo '$(srcdir)/'`utf8.c |  | ||||||
| 
 | 
 | ||||||
| libdriver_a-utf8.obj: utf8.c | libdriver_a-utf8.obj: utf8.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdriver_a_CFLAGS) $(CFLAGS) -c -o libdriver_a-utf8.obj `if test -f 'utf8.c'; then $(CYGPATH_W) 'utf8.c'; else $(CYGPATH_W) '$(srcdir)/utf8.c'; fi` | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdriver_a_CFLAGS) $(CFLAGS) -c -o libdriver_a-utf8.obj `if test -f 'utf8.c'; then $(CYGPATH_W) 'utf8.c'; else $(CYGPATH_W) '$(srcdir)/utf8.c'; fi` |  | ||||||
| 
 | 
 | ||||||
| ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) | ID: $(am__tagged_files) | ||||||
| 	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
 | 	$(am__define_uniq_tagged_files); mkid -fID $$unique | ||||||
| 	unique=`for i in $$list; do \
 | tags: tags-am | ||||||
| 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 | TAGS: tags | ||||||
| 	  done | \
 |  | ||||||
| 	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
 |  | ||||||
| 	      END { if (nonempty) { for (i in files) print i; }; }'`; \
 |  | ||||||
| 	mkid -fID $$unique |  | ||||||
| tags: TAGS |  | ||||||
| 
 | 
 | ||||||
| TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \ | tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) | ||||||
| 		$(TAGS_FILES) $(LISP) |  | ||||||
| 	set x; \
 | 	set x; \
 | ||||||
| 	here=`pwd`; \
 | 	here=`pwd`; \
 | ||||||
| 	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 | 	$(am__define_uniq_tagged_files); \
 | ||||||
| 	unique=`for i in $$list; do \
 |  | ||||||
| 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 |  | ||||||
| 	  done | \
 |  | ||||||
| 	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
 |  | ||||||
| 	      END { if (nonempty) { for (i in files) print i; }; }'`; \
 |  | ||||||
| 	shift; \
 | 	shift; \
 | ||||||
| 	if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
 | 	if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
 | ||||||
| 	  test -n "$$unique" || unique=$$empty_fix; \
 | 	  test -n "$$unique" || unique=$$empty_fix; \
 | ||||||
|  | @ -348,15 +390,11 @@ TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \ | ||||||
| 	      $$unique; \
 | 	      $$unique; \
 | ||||||
| 	  fi; \
 | 	  fi; \
 | ||||||
| 	fi | 	fi | ||||||
| ctags: CTAGS | ctags: ctags-am | ||||||
| CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \ | 
 | ||||||
| 		$(TAGS_FILES) $(LISP) | CTAGS: ctags | ||||||
| 	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 | ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) | ||||||
| 	unique=`for i in $$list; do \
 | 	$(am__define_uniq_tagged_files); \
 | ||||||
| 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 |  | ||||||
| 	  done | \
 |  | ||||||
| 	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
 |  | ||||||
| 	      END { if (nonempty) { for (i in files) print i; }; }'`; \
 |  | ||||||
| 	test -z "$(CTAGS_ARGS)$$unique" \
 | 	test -z "$(CTAGS_ARGS)$$unique" \
 | ||||||
| 	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
 | 	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
 | ||||||
| 	     $$unique | 	     $$unique | ||||||
|  | @ -365,6 +403,21 @@ GTAGS: | ||||||
| 	here=`$(am__cd) $(top_builddir) && pwd` \
 | 	here=`$(am__cd) $(top_builddir) && pwd` \
 | ||||||
| 	  && $(am__cd) $(top_srcdir) \
 | 	  && $(am__cd) $(top_srcdir) \
 | ||||||
| 	  && gtags -i $(GTAGS_ARGS) "$$here" | 	  && gtags -i $(GTAGS_ARGS) "$$here" | ||||||
|  | cscopelist: cscopelist-am | ||||||
|  | 
 | ||||||
|  | cscopelist-am: $(am__tagged_files) | ||||||
|  | 	list='$(am__tagged_files)'; \
 | ||||||
|  | 	case "$(srcdir)" in \
 | ||||||
|  | 	  [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
 | ||||||
|  | 	  *) sdir=$(subdir)/$(srcdir) ;; \
 | ||||||
|  | 	esac; \
 | ||||||
|  | 	for i in $$list; do \
 | ||||||
|  | 	  if test -f "$$i"; then \
 | ||||||
|  | 	    echo "$(subdir)/$$i"; \
 | ||||||
|  | 	  else \
 | ||||||
|  | 	    echo "$$sdir/$$i"; \
 | ||||||
|  | 	  fi; \
 | ||||||
|  | 	done >> $(top_builddir)/cscope.files | ||||||
| 
 | 
 | ||||||
| distclean-tags: | distclean-tags: | ||||||
| 	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags | 	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags | ||||||
|  | @ -382,10 +435,15 @@ install-am: all-am | ||||||
| 
 | 
 | ||||||
| installcheck: installcheck-am | installcheck: installcheck-am | ||||||
| install-strip: | install-strip: | ||||||
|  | 	if test -z '$(STRIP)'; then \
 | ||||||
| 	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 | 	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 | ||||||
| 	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 | 	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 | ||||||
| 	  `test -z '$(STRIP)' || \
 | 	      install; \
 | ||||||
| 	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install | 	else \
 | ||||||
|  | 	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 | ||||||
|  | 	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 | ||||||
|  | 	    "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
 | ||||||
|  | 	fi | ||||||
| mostlyclean-generic: | mostlyclean-generic: | ||||||
| 
 | 
 | ||||||
| clean-generic: | clean-generic: | ||||||
|  | @ -466,17 +524,18 @@ uninstall-am: | ||||||
| 
 | 
 | ||||||
| .MAKE: install-am install-strip | .MAKE: install-am install-strip | ||||||
| 
 | 
 | ||||||
| .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ | .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ | ||||||
| 	clean-noinstLIBRARIES ctags distclean distclean-compile \
 | 	clean-noinstLIBRARIES cscopelist-am ctags ctags-am distclean \
 | ||||||
| 	distclean-generic distclean-tags dvi dvi-am html html-am info \
 | 	distclean-compile distclean-generic distclean-tags dvi dvi-am \
 | ||||||
| 	info-am install install-am install-data install-data-am \
 | 	html html-am info info-am install install-am install-data \
 | ||||||
| 	install-dvi install-dvi-am install-exec install-exec-am \
 | 	install-data-am install-dvi install-dvi-am install-exec \
 | ||||||
| 	install-html install-html-am install-info install-info-am \
 | 	install-exec-am install-html install-html-am install-info \
 | ||||||
| 	install-man install-pdf install-pdf-am install-ps \
 | 	install-info-am install-man install-pdf install-pdf-am \
 | ||||||
| 	install-ps-am install-strip installcheck installcheck-am \
 | 	install-ps install-ps-am install-strip installcheck \
 | ||||||
| 	installdirs maintainer-clean maintainer-clean-generic \
 | 	installcheck-am installdirs maintainer-clean \
 | ||||||
| 	mostlyclean mostlyclean-compile mostlyclean-generic pdf pdf-am \
 | 	maintainer-clean-generic mostlyclean mostlyclean-compile \
 | ||||||
| 	ps ps-am tags uninstall uninstall-am | 	mostlyclean-generic pdf pdf-am ps ps-am tags tags-am uninstall \
 | ||||||
|  | 	uninstall-am | ||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
| # Tell versions [3.59,3.63) of GNU make to not export all variables.
 | # Tell versions [3.59,3.63) of GNU make to not export all variables.
 | ||||||
|  |  | ||||||
|  | @ -1,9 +1,8 @@ | ||||||
| # Makefile.in generated by automake 1.11.1 from Makefile.am.
 | # Makefile.in generated by automake 1.14.1 from Makefile.am.
 | ||||||
| # @configure_input@
 | # @configure_input@
 | ||||||
| 
 | 
 | ||||||
| # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
 | # Copyright (C) 1994-2013 Free Software Foundation, Inc.
 | ||||||
| # 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
 | 
 | ||||||
| # Inc.
 |  | ||||||
| # This Makefile.in is free software; the Free Software Foundation
 | # This Makefile.in is free software; the Free Software Foundation
 | ||||||
| # gives unlimited permission to copy and/or distribute it,
 | # gives unlimited permission to copy and/or distribute it,
 | ||||||
| # with or without modifications, as long as this notice is preserved.
 | # with or without modifications, as long as this notice is preserved.
 | ||||||
|  | @ -16,6 +15,51 @@ | ||||||
| @SET_MAKE@ | @SET_MAKE@ | ||||||
| 
 | 
 | ||||||
| VPATH = @srcdir@ | VPATH = @srcdir@ | ||||||
|  | am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' | ||||||
|  | am__make_running_with_option = \
 | ||||||
|  |   case $${target_option-} in \
 | ||||||
|  |       ?) ;; \
 | ||||||
|  |       *) echo "am__make_running_with_option: internal error: invalid" \
 | ||||||
|  |               "target option '$${target_option-}' specified" >&2; \
 | ||||||
|  |          exit 1;; \
 | ||||||
|  |   esac; \
 | ||||||
|  |   has_opt=no; \
 | ||||||
|  |   sane_makeflags=$$MAKEFLAGS; \
 | ||||||
|  |   if $(am__is_gnu_make); then \
 | ||||||
|  |     sane_makeflags=$$MFLAGS; \
 | ||||||
|  |   else \
 | ||||||
|  |     case $$MAKEFLAGS in \
 | ||||||
|  |       *\\[\ \	]*) \
 | ||||||
|  |         bs=\\; \
 | ||||||
|  |         sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
 | ||||||
|  |           | sed "s/$$bs$$bs[$$bs $$bs	]*//g"`;; \
 | ||||||
|  |     esac; \
 | ||||||
|  |   fi; \
 | ||||||
|  |   skip_next=no; \
 | ||||||
|  |   strip_trailopt () \
 | ||||||
|  |   { \
 | ||||||
|  |     flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
 | ||||||
|  |   }; \
 | ||||||
|  |   for flg in $$sane_makeflags; do \
 | ||||||
|  |     test $$skip_next = yes && { skip_next=no; continue; }; \
 | ||||||
|  |     case $$flg in \
 | ||||||
|  |       *=*|--*) continue;; \
 | ||||||
|  |         -*I) strip_trailopt 'I'; skip_next=yes;; \
 | ||||||
|  |       -*I?*) strip_trailopt 'I';; \
 | ||||||
|  |         -*O) strip_trailopt 'O'; skip_next=yes;; \
 | ||||||
|  |       -*O?*) strip_trailopt 'O';; \
 | ||||||
|  |         -*l) strip_trailopt 'l'; skip_next=yes;; \
 | ||||||
|  |       -*l?*) strip_trailopt 'l';; \
 | ||||||
|  |       -[dEDm]) skip_next=yes;; \
 | ||||||
|  |       -[JT]) skip_next=yes;; \
 | ||||||
|  |     esac; \
 | ||||||
|  |     case $$flg in \
 | ||||||
|  |       *$$target_option*) has_opt=yes; break;; \
 | ||||||
|  |     esac; \
 | ||||||
|  |   done; \
 | ||||||
|  |   test $$has_opt = yes | ||||||
|  | am__make_dryrun = (target_option=n; $(am__make_running_with_option)) | ||||||
|  | am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) | ||||||
| pkgdatadir = $(datadir)/@PACKAGE@ | pkgdatadir = $(datadir)/@PACKAGE@ | ||||||
| pkgincludedir = $(includedir)/@PACKAGE@ | pkgincludedir = $(includedir)/@PACKAGE@ | ||||||
| pkglibdir = $(libdir)/@PACKAGE@ | pkglibdir = $(libdir)/@PACKAGE@ | ||||||
|  | @ -44,38 +88,70 @@ CONFIG_CLEAN_VPATH_FILES = | ||||||
| LIBRARIES = $(noinst_LIBRARIES) | LIBRARIES = $(noinst_LIBRARIES) | ||||||
| AR = ar | AR = ar | ||||||
| ARFLAGS = cru | ARFLAGS = cru | ||||||
| AM_V_AR = $(am__v_AR_$(V)) | AM_V_AR = $(am__v_AR_@AM_V@) | ||||||
| am__v_AR_ = $(am__v_AR_$(AM_DEFAULT_VERBOSITY)) | am__v_AR_ = $(am__v_AR_@AM_DEFAULT_V@) | ||||||
| am__v_AR_0 = @echo "  AR      " $@; | am__v_AR_0 = @echo "  AR      " $@; | ||||||
| AM_V_at = $(am__v_at_$(V)) | am__v_AR_1 =  | ||||||
| am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) |  | ||||||
| am__v_at_0 = @ |  | ||||||
| libiso9660_a_AR = $(AR) $(ARFLAGS) | libiso9660_a_AR = $(AR) $(ARFLAGS) | ||||||
| libiso9660_a_LIBADD = | libiso9660_a_LIBADD = | ||||||
| am_libiso9660_a_OBJECTS = libiso9660_a-iso9660.$(OBJEXT) \
 | am_libiso9660_a_OBJECTS = libiso9660_a-iso9660.$(OBJEXT) \
 | ||||||
| 	libiso9660_a-iso9660_fs.$(OBJEXT) libiso9660_a-rock.$(OBJEXT) \
 | 	libiso9660_a-iso9660_fs.$(OBJEXT) libiso9660_a-rock.$(OBJEXT) \
 | ||||||
| 	libiso9660_a-xa.$(OBJEXT) | 	libiso9660_a-xa.$(OBJEXT) | ||||||
| libiso9660_a_OBJECTS = $(am_libiso9660_a_OBJECTS) | libiso9660_a_OBJECTS = $(am_libiso9660_a_OBJECTS) | ||||||
|  | AM_V_P = $(am__v_P_@AM_V@) | ||||||
|  | am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) | ||||||
|  | am__v_P_0 = false | ||||||
|  | am__v_P_1 = : | ||||||
|  | AM_V_GEN = $(am__v_GEN_@AM_V@) | ||||||
|  | am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) | ||||||
|  | am__v_GEN_0 = @echo "  GEN     " $@; | ||||||
|  | am__v_GEN_1 =  | ||||||
|  | AM_V_at = $(am__v_at_@AM_V@) | ||||||
|  | am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) | ||||||
|  | am__v_at_0 = @ | ||||||
|  | am__v_at_1 =  | ||||||
| DEFAULT_INCLUDES = -I.@am__isrc@ | DEFAULT_INCLUDES = -I.@am__isrc@ | ||||||
| depcomp = | depcomp = | ||||||
| am__depfiles_maybe = | am__depfiles_maybe = | ||||||
| AM_V_lt = $(am__v_lt_$(V)) | AM_V_lt = $(am__v_lt_@AM_V@) | ||||||
| am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) | am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) | ||||||
| am__v_lt_0 = --silent | am__v_lt_0 = --silent | ||||||
|  | am__v_lt_1 =  | ||||||
| COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
 | COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
 | ||||||
| 	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) | 	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) | ||||||
| AM_V_CC = $(am__v_CC_$(V)) | AM_V_CC = $(am__v_CC_@AM_V@) | ||||||
| am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) | am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) | ||||||
| am__v_CC_0 = @echo "  CC      " $@; | am__v_CC_0 = @echo "  CC      " $@; | ||||||
|  | am__v_CC_1 =  | ||||||
| CCLD = $(CC) | CCLD = $(CC) | ||||||
| LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ | LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ | ||||||
| AM_V_CCLD = $(am__v_CCLD_$(V)) | AM_V_CCLD = $(am__v_CCLD_@AM_V@) | ||||||
| am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) | am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) | ||||||
| am__v_CCLD_0 = @echo "  CCLD    " $@; | am__v_CCLD_0 = @echo "  CCLD    " $@; | ||||||
| AM_V_GEN = $(am__v_GEN_$(V)) | am__v_CCLD_1 =  | ||||||
| am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) |  | ||||||
| am__v_GEN_0 = @echo "  GEN   " $@; |  | ||||||
| SOURCES = $(libiso9660_a_SOURCES) | SOURCES = $(libiso9660_a_SOURCES) | ||||||
|  | am__can_run_installinfo = \
 | ||||||
|  |   case $$AM_UPDATE_INFO_DIR in \
 | ||||||
|  |     n|no|NO) false;; \
 | ||||||
|  |     *) (install-info --version) >/dev/null 2>&1;; \
 | ||||||
|  |   esac | ||||||
|  | am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) | ||||||
|  | # Read a list of newline-separated strings from the standard input,
 | ||||||
|  | # and print each of them once, without duplicates.  Input order is
 | ||||||
|  | # *not* preserved.
 | ||||||
|  | am__uniquify_input = $(AWK) '\
 | ||||||
|  |   BEGIN { nonempty = 0; } \
 | ||||||
|  |   { items[$$0] = 1; nonempty = 1; } \
 | ||||||
|  |   END { if (nonempty) { for (i in items) print i; }; } \
 | ||||||
|  | ' | ||||||
|  | # Make sure the list of sources is unique.  This is necessary because,
 | ||||||
|  | # e.g., the same source file might be shared among _SOURCES variables
 | ||||||
|  | # for different programs/libraries.
 | ||||||
|  | am__define_uniq_tagged_files = \
 | ||||||
|  |   list='$(am__tagged_files)'; \
 | ||||||
|  |   unique=`for i in $$list; do \
 | ||||||
|  |     if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 | ||||||
|  |   done | $(am__uniquify_input)` | ||||||
| ETAGS = etags | ETAGS = etags | ||||||
| CTAGS = ctags | CTAGS = ctags | ||||||
| ACLOCAL = @ACLOCAL@ | ACLOCAL = @ACLOCAL@ | ||||||
|  | @ -207,7 +283,8 @@ $(am__aclocal_m4_deps): | ||||||
| 
 | 
 | ||||||
| clean-noinstLIBRARIES: | clean-noinstLIBRARIES: | ||||||
| 	-test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) | 	-test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) | ||||||
| libiso9660.a: $(libiso9660_a_OBJECTS) $(libiso9660_a_DEPENDENCIES)  | 
 | ||||||
|  | libiso9660.a: $(libiso9660_a_OBJECTS) $(libiso9660_a_DEPENDENCIES) $(EXTRA_libiso9660_a_DEPENDENCIES)  | ||||||
| 	$(AM_V_at)-rm -f libiso9660.a | 	$(AM_V_at)-rm -f libiso9660.a | ||||||
| 	$(AM_V_AR)$(libiso9660_a_AR) libiso9660.a $(libiso9660_a_OBJECTS) $(libiso9660_a_LIBADD) | 	$(AM_V_AR)$(libiso9660_a_AR) libiso9660.a $(libiso9660_a_OBJECTS) $(libiso9660_a_LIBADD) | ||||||
| 	$(AM_V_at)$(RANLIB) libiso9660.a | 	$(AM_V_at)$(RANLIB) libiso9660.a | ||||||
|  | @ -219,65 +296,44 @@ distclean-compile: | ||||||
| 	-rm -f *.tab.c | 	-rm -f *.tab.c | ||||||
| 
 | 
 | ||||||
| .c.o: | .c.o: | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(COMPILE) -c -o $@ $< | ||||||
| 	$(COMPILE) -c $< |  | ||||||
| 
 | 
 | ||||||
| .c.obj: | .c.obj: | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` | ||||||
| 	$(COMPILE) -c `$(CYGPATH_W) '$<'` |  | ||||||
| 
 | 
 | ||||||
| libiso9660_a-iso9660.o: iso9660.c | libiso9660_a-iso9660.o: iso9660.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libiso9660_a_CFLAGS) $(CFLAGS) -c -o libiso9660_a-iso9660.o `test -f 'iso9660.c' || echo '$(srcdir)/'`iso9660.c | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libiso9660_a_CFLAGS) $(CFLAGS) -c -o libiso9660_a-iso9660.o `test -f 'iso9660.c' || echo '$(srcdir)/'`iso9660.c |  | ||||||
| 
 | 
 | ||||||
| libiso9660_a-iso9660.obj: iso9660.c | libiso9660_a-iso9660.obj: iso9660.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libiso9660_a_CFLAGS) $(CFLAGS) -c -o libiso9660_a-iso9660.obj `if test -f 'iso9660.c'; then $(CYGPATH_W) 'iso9660.c'; else $(CYGPATH_W) '$(srcdir)/iso9660.c'; fi` | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libiso9660_a_CFLAGS) $(CFLAGS) -c -o libiso9660_a-iso9660.obj `if test -f 'iso9660.c'; then $(CYGPATH_W) 'iso9660.c'; else $(CYGPATH_W) '$(srcdir)/iso9660.c'; fi` |  | ||||||
| 
 | 
 | ||||||
| libiso9660_a-iso9660_fs.o: iso9660_fs.c | libiso9660_a-iso9660_fs.o: iso9660_fs.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libiso9660_a_CFLAGS) $(CFLAGS) -c -o libiso9660_a-iso9660_fs.o `test -f 'iso9660_fs.c' || echo '$(srcdir)/'`iso9660_fs.c | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libiso9660_a_CFLAGS) $(CFLAGS) -c -o libiso9660_a-iso9660_fs.o `test -f 'iso9660_fs.c' || echo '$(srcdir)/'`iso9660_fs.c |  | ||||||
| 
 | 
 | ||||||
| libiso9660_a-iso9660_fs.obj: iso9660_fs.c | libiso9660_a-iso9660_fs.obj: iso9660_fs.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libiso9660_a_CFLAGS) $(CFLAGS) -c -o libiso9660_a-iso9660_fs.obj `if test -f 'iso9660_fs.c'; then $(CYGPATH_W) 'iso9660_fs.c'; else $(CYGPATH_W) '$(srcdir)/iso9660_fs.c'; fi` | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libiso9660_a_CFLAGS) $(CFLAGS) -c -o libiso9660_a-iso9660_fs.obj `if test -f 'iso9660_fs.c'; then $(CYGPATH_W) 'iso9660_fs.c'; else $(CYGPATH_W) '$(srcdir)/iso9660_fs.c'; fi` |  | ||||||
| 
 | 
 | ||||||
| libiso9660_a-rock.o: rock.c | libiso9660_a-rock.o: rock.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libiso9660_a_CFLAGS) $(CFLAGS) -c -o libiso9660_a-rock.o `test -f 'rock.c' || echo '$(srcdir)/'`rock.c | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libiso9660_a_CFLAGS) $(CFLAGS) -c -o libiso9660_a-rock.o `test -f 'rock.c' || echo '$(srcdir)/'`rock.c |  | ||||||
| 
 | 
 | ||||||
| libiso9660_a-rock.obj: rock.c | libiso9660_a-rock.obj: rock.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libiso9660_a_CFLAGS) $(CFLAGS) -c -o libiso9660_a-rock.obj `if test -f 'rock.c'; then $(CYGPATH_W) 'rock.c'; else $(CYGPATH_W) '$(srcdir)/rock.c'; fi` | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libiso9660_a_CFLAGS) $(CFLAGS) -c -o libiso9660_a-rock.obj `if test -f 'rock.c'; then $(CYGPATH_W) 'rock.c'; else $(CYGPATH_W) '$(srcdir)/rock.c'; fi` |  | ||||||
| 
 | 
 | ||||||
| libiso9660_a-xa.o: xa.c | libiso9660_a-xa.o: xa.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libiso9660_a_CFLAGS) $(CFLAGS) -c -o libiso9660_a-xa.o `test -f 'xa.c' || echo '$(srcdir)/'`xa.c | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libiso9660_a_CFLAGS) $(CFLAGS) -c -o libiso9660_a-xa.o `test -f 'xa.c' || echo '$(srcdir)/'`xa.c |  | ||||||
| 
 | 
 | ||||||
| libiso9660_a-xa.obj: xa.c | libiso9660_a-xa.obj: xa.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libiso9660_a_CFLAGS) $(CFLAGS) -c -o libiso9660_a-xa.obj `if test -f 'xa.c'; then $(CYGPATH_W) 'xa.c'; else $(CYGPATH_W) '$(srcdir)/xa.c'; fi` | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libiso9660_a_CFLAGS) $(CFLAGS) -c -o libiso9660_a-xa.obj `if test -f 'xa.c'; then $(CYGPATH_W) 'xa.c'; else $(CYGPATH_W) '$(srcdir)/xa.c'; fi` |  | ||||||
| 
 | 
 | ||||||
| ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) | ID: $(am__tagged_files) | ||||||
| 	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
 | 	$(am__define_uniq_tagged_files); mkid -fID $$unique | ||||||
| 	unique=`for i in $$list; do \
 | tags: tags-am | ||||||
| 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 | TAGS: tags | ||||||
| 	  done | \
 |  | ||||||
| 	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
 |  | ||||||
| 	      END { if (nonempty) { for (i in files) print i; }; }'`; \
 |  | ||||||
| 	mkid -fID $$unique |  | ||||||
| tags: TAGS |  | ||||||
| 
 | 
 | ||||||
| TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \ | tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) | ||||||
| 		$(TAGS_FILES) $(LISP) |  | ||||||
| 	set x; \
 | 	set x; \
 | ||||||
| 	here=`pwd`; \
 | 	here=`pwd`; \
 | ||||||
| 	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 | 	$(am__define_uniq_tagged_files); \
 | ||||||
| 	unique=`for i in $$list; do \
 |  | ||||||
| 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 |  | ||||||
| 	  done | \
 |  | ||||||
| 	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
 |  | ||||||
| 	      END { if (nonempty) { for (i in files) print i; }; }'`; \
 |  | ||||||
| 	shift; \
 | 	shift; \
 | ||||||
| 	if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
 | 	if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
 | ||||||
| 	  test -n "$$unique" || unique=$$empty_fix; \
 | 	  test -n "$$unique" || unique=$$empty_fix; \
 | ||||||
|  | @ -289,15 +345,11 @@ TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \ | ||||||
| 	      $$unique; \
 | 	      $$unique; \
 | ||||||
| 	  fi; \
 | 	  fi; \
 | ||||||
| 	fi | 	fi | ||||||
| ctags: CTAGS | ctags: ctags-am | ||||||
| CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \ | 
 | ||||||
| 		$(TAGS_FILES) $(LISP) | CTAGS: ctags | ||||||
| 	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 | ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) | ||||||
| 	unique=`for i in $$list; do \
 | 	$(am__define_uniq_tagged_files); \
 | ||||||
| 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 |  | ||||||
| 	  done | \
 |  | ||||||
| 	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
 |  | ||||||
| 	      END { if (nonempty) { for (i in files) print i; }; }'`; \
 |  | ||||||
| 	test -z "$(CTAGS_ARGS)$$unique" \
 | 	test -z "$(CTAGS_ARGS)$$unique" \
 | ||||||
| 	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
 | 	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
 | ||||||
| 	     $$unique | 	     $$unique | ||||||
|  | @ -306,6 +358,21 @@ GTAGS: | ||||||
| 	here=`$(am__cd) $(top_builddir) && pwd` \
 | 	here=`$(am__cd) $(top_builddir) && pwd` \
 | ||||||
| 	  && $(am__cd) $(top_srcdir) \
 | 	  && $(am__cd) $(top_srcdir) \
 | ||||||
| 	  && gtags -i $(GTAGS_ARGS) "$$here" | 	  && gtags -i $(GTAGS_ARGS) "$$here" | ||||||
|  | cscopelist: cscopelist-am | ||||||
|  | 
 | ||||||
|  | cscopelist-am: $(am__tagged_files) | ||||||
|  | 	list='$(am__tagged_files)'; \
 | ||||||
|  | 	case "$(srcdir)" in \
 | ||||||
|  | 	  [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
 | ||||||
|  | 	  *) sdir=$(subdir)/$(srcdir) ;; \
 | ||||||
|  | 	esac; \
 | ||||||
|  | 	for i in $$list; do \
 | ||||||
|  | 	  if test -f "$$i"; then \
 | ||||||
|  | 	    echo "$(subdir)/$$i"; \
 | ||||||
|  | 	  else \
 | ||||||
|  | 	    echo "$$sdir/$$i"; \
 | ||||||
|  | 	  fi; \
 | ||||||
|  | 	done >> $(top_builddir)/cscope.files | ||||||
| 
 | 
 | ||||||
| distclean-tags: | distclean-tags: | ||||||
| 	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags | 	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags | ||||||
|  | @ -323,10 +390,15 @@ install-am: all-am | ||||||
| 
 | 
 | ||||||
| installcheck: installcheck-am | installcheck: installcheck-am | ||||||
| install-strip: | install-strip: | ||||||
|  | 	if test -z '$(STRIP)'; then \
 | ||||||
| 	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 | 	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 | ||||||
| 	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 | 	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 | ||||||
| 	  `test -z '$(STRIP)' || \
 | 	      install; \
 | ||||||
| 	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install | 	else \
 | ||||||
|  | 	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 | ||||||
|  | 	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 | ||||||
|  | 	    "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
 | ||||||
|  | 	fi | ||||||
| mostlyclean-generic: | mostlyclean-generic: | ||||||
| 
 | 
 | ||||||
| clean-generic: | clean-generic: | ||||||
|  | @ -407,17 +479,18 @@ uninstall-am: | ||||||
| 
 | 
 | ||||||
| .MAKE: install-am install-strip | .MAKE: install-am install-strip | ||||||
| 
 | 
 | ||||||
| .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ | .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ | ||||||
| 	clean-noinstLIBRARIES ctags distclean distclean-compile \
 | 	clean-noinstLIBRARIES cscopelist-am ctags ctags-am distclean \
 | ||||||
| 	distclean-generic distclean-tags dvi dvi-am html html-am info \
 | 	distclean-compile distclean-generic distclean-tags dvi dvi-am \
 | ||||||
| 	info-am install install-am install-data install-data-am \
 | 	html html-am info info-am install install-am install-data \
 | ||||||
| 	install-dvi install-dvi-am install-exec install-exec-am \
 | 	install-data-am install-dvi install-dvi-am install-exec \
 | ||||||
| 	install-html install-html-am install-info install-info-am \
 | 	install-exec-am install-html install-html-am install-info \
 | ||||||
| 	install-man install-pdf install-pdf-am install-ps \
 | 	install-info-am install-man install-pdf install-pdf-am \
 | ||||||
| 	install-ps-am install-strip installcheck installcheck-am \
 | 	install-ps install-ps-am install-strip installcheck \
 | ||||||
| 	installdirs maintainer-clean maintainer-clean-generic \
 | 	installcheck-am installdirs maintainer-clean \
 | ||||||
| 	mostlyclean mostlyclean-compile mostlyclean-generic pdf pdf-am \
 | 	maintainer-clean-generic mostlyclean mostlyclean-compile \
 | ||||||
| 	ps ps-am tags uninstall uninstall-am | 	mostlyclean-generic pdf pdf-am ps ps-am tags tags-am uninstall \
 | ||||||
|  | 	uninstall-am | ||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
| # Tell versions [3.59,3.63) of GNU make to not export all variables.
 | # Tell versions [3.59,3.63) of GNU make to not export all variables.
 | ||||||
|  |  | ||||||
|  | @ -91,7 +91,7 @@ timegm(struct tm *tm) | ||||||
| #endif | #endif | ||||||
| 
 | 
 | ||||||
| #ifndef HAVE_GMTIME_R | #ifndef HAVE_GMTIME_R | ||||||
| static struct tm * | struct tm * | ||||||
| gmtime_r(const time_t *timer, struct tm *result) | gmtime_r(const time_t *timer, struct tm *result) | ||||||
| { | { | ||||||
|     struct tm *tmp = gmtime(timer); |     struct tm *tmp = gmtime(timer); | ||||||
|  | @ -105,7 +105,7 @@ gmtime_r(const time_t *timer, struct tm *result) | ||||||
| #endif | #endif | ||||||
| 
 | 
 | ||||||
| #ifndef HAVE_LOCALTIME_R | #ifndef HAVE_LOCALTIME_R | ||||||
| static struct tm * | struct tm * | ||||||
| localtime_r(const time_t *timer, struct tm *result) | localtime_r(const time_t *timer, struct tm *result) | ||||||
| { | { | ||||||
|     struct tm *tmp = localtime(timer); |     struct tm *tmp = localtime(timer); | ||||||
|  |  | ||||||
|  | @ -1,9 +1,8 @@ | ||||||
| # Makefile.in generated by automake 1.11.1 from Makefile.am.
 | # Makefile.in generated by automake 1.14.1 from Makefile.am.
 | ||||||
| # @configure_input@
 | # @configure_input@
 | ||||||
| 
 | 
 | ||||||
| # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
 | # Copyright (C) 1994-2013 Free Software Foundation, Inc.
 | ||||||
| # 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
 | 
 | ||||||
| # Inc.
 |  | ||||||
| # This Makefile.in is free software; the Free Software Foundation
 | # This Makefile.in is free software; the Free Software Foundation
 | ||||||
| # gives unlimited permission to copy and/or distribute it,
 | # gives unlimited permission to copy and/or distribute it,
 | ||||||
| # with or without modifications, as long as this notice is preserved.
 | # with or without modifications, as long as this notice is preserved.
 | ||||||
|  | @ -16,6 +15,51 @@ | ||||||
| @SET_MAKE@ | @SET_MAKE@ | ||||||
| 
 | 
 | ||||||
| VPATH = @srcdir@ | VPATH = @srcdir@ | ||||||
|  | am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' | ||||||
|  | am__make_running_with_option = \
 | ||||||
|  |   case $${target_option-} in \
 | ||||||
|  |       ?) ;; \
 | ||||||
|  |       *) echo "am__make_running_with_option: internal error: invalid" \
 | ||||||
|  |               "target option '$${target_option-}' specified" >&2; \
 | ||||||
|  |          exit 1;; \
 | ||||||
|  |   esac; \
 | ||||||
|  |   has_opt=no; \
 | ||||||
|  |   sane_makeflags=$$MAKEFLAGS; \
 | ||||||
|  |   if $(am__is_gnu_make); then \
 | ||||||
|  |     sane_makeflags=$$MFLAGS; \
 | ||||||
|  |   else \
 | ||||||
|  |     case $$MAKEFLAGS in \
 | ||||||
|  |       *\\[\ \	]*) \
 | ||||||
|  |         bs=\\; \
 | ||||||
|  |         sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
 | ||||||
|  |           | sed "s/$$bs$$bs[$$bs $$bs	]*//g"`;; \
 | ||||||
|  |     esac; \
 | ||||||
|  |   fi; \
 | ||||||
|  |   skip_next=no; \
 | ||||||
|  |   strip_trailopt () \
 | ||||||
|  |   { \
 | ||||||
|  |     flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
 | ||||||
|  |   }; \
 | ||||||
|  |   for flg in $$sane_makeflags; do \
 | ||||||
|  |     test $$skip_next = yes && { skip_next=no; continue; }; \
 | ||||||
|  |     case $$flg in \
 | ||||||
|  |       *=*|--*) continue;; \
 | ||||||
|  |         -*I) strip_trailopt 'I'; skip_next=yes;; \
 | ||||||
|  |       -*I?*) strip_trailopt 'I';; \
 | ||||||
|  |         -*O) strip_trailopt 'O'; skip_next=yes;; \
 | ||||||
|  |       -*O?*) strip_trailopt 'O';; \
 | ||||||
|  |         -*l) strip_trailopt 'l'; skip_next=yes;; \
 | ||||||
|  |       -*l?*) strip_trailopt 'l';; \
 | ||||||
|  |       -[dEDm]) skip_next=yes;; \
 | ||||||
|  |       -[JT]) skip_next=yes;; \
 | ||||||
|  |     esac; \
 | ||||||
|  |     case $$flg in \
 | ||||||
|  |       *$$target_option*) has_opt=yes; break;; \
 | ||||||
|  |     esac; \
 | ||||||
|  |   done; \
 | ||||||
|  |   test $$has_opt = yes | ||||||
|  | am__make_dryrun = (target_option=n; $(am__make_running_with_option)) | ||||||
|  | am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) | ||||||
| pkgdatadir = $(datadir)/@PACKAGE@ | pkgdatadir = $(datadir)/@PACKAGE@ | ||||||
| pkgincludedir = $(includedir)/@PACKAGE@ | pkgincludedir = $(includedir)/@PACKAGE@ | ||||||
| pkglibdir = $(libdir)/@PACKAGE@ | pkglibdir = $(libdir)/@PACKAGE@ | ||||||
|  | @ -44,38 +88,70 @@ CONFIG_CLEAN_VPATH_FILES = | ||||||
| LIBRARIES = $(noinst_LIBRARIES) | LIBRARIES = $(noinst_LIBRARIES) | ||||||
| AR = ar | AR = ar | ||||||
| ARFLAGS = cru | ARFLAGS = cru | ||||||
| AM_V_AR = $(am__v_AR_$(V)) | AM_V_AR = $(am__v_AR_@AM_V@) | ||||||
| am__v_AR_ = $(am__v_AR_$(AM_DEFAULT_VERBOSITY)) | am__v_AR_ = $(am__v_AR_@AM_DEFAULT_V@) | ||||||
| am__v_AR_0 = @echo "  AR      " $@; | am__v_AR_0 = @echo "  AR      " $@; | ||||||
| AM_V_at = $(am__v_at_$(V)) | am__v_AR_1 =  | ||||||
| am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) |  | ||||||
| am__v_at_0 = @ |  | ||||||
| libudf_a_AR = $(AR) $(ARFLAGS) | libudf_a_AR = $(AR) $(ARFLAGS) | ||||||
| libudf_a_LIBADD = | libudf_a_LIBADD = | ||||||
| am_libudf_a_OBJECTS = libudf_a-udf.$(OBJEXT) \
 | am_libudf_a_OBJECTS = libudf_a-udf.$(OBJEXT) \
 | ||||||
| 	libudf_a-udf_file.$(OBJEXT) libudf_a-udf_fs.$(OBJEXT) \
 | 	libudf_a-udf_file.$(OBJEXT) libudf_a-udf_fs.$(OBJEXT) \
 | ||||||
| 	libudf_a-udf_time.$(OBJEXT) libudf_a-filemode.$(OBJEXT) | 	libudf_a-udf_time.$(OBJEXT) libudf_a-filemode.$(OBJEXT) | ||||||
| libudf_a_OBJECTS = $(am_libudf_a_OBJECTS) | libudf_a_OBJECTS = $(am_libudf_a_OBJECTS) | ||||||
|  | AM_V_P = $(am__v_P_@AM_V@) | ||||||
|  | am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) | ||||||
|  | am__v_P_0 = false | ||||||
|  | am__v_P_1 = : | ||||||
|  | AM_V_GEN = $(am__v_GEN_@AM_V@) | ||||||
|  | am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) | ||||||
|  | am__v_GEN_0 = @echo "  GEN     " $@; | ||||||
|  | am__v_GEN_1 =  | ||||||
|  | AM_V_at = $(am__v_at_@AM_V@) | ||||||
|  | am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) | ||||||
|  | am__v_at_0 = @ | ||||||
|  | am__v_at_1 =  | ||||||
| DEFAULT_INCLUDES = -I.@am__isrc@ | DEFAULT_INCLUDES = -I.@am__isrc@ | ||||||
| depcomp = | depcomp = | ||||||
| am__depfiles_maybe = | am__depfiles_maybe = | ||||||
| AM_V_lt = $(am__v_lt_$(V)) | AM_V_lt = $(am__v_lt_@AM_V@) | ||||||
| am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) | am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) | ||||||
| am__v_lt_0 = --silent | am__v_lt_0 = --silent | ||||||
|  | am__v_lt_1 =  | ||||||
| COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
 | COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
 | ||||||
| 	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) | 	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) | ||||||
| AM_V_CC = $(am__v_CC_$(V)) | AM_V_CC = $(am__v_CC_@AM_V@) | ||||||
| am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) | am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) | ||||||
| am__v_CC_0 = @echo "  CC      " $@; | am__v_CC_0 = @echo "  CC      " $@; | ||||||
|  | am__v_CC_1 =  | ||||||
| CCLD = $(CC) | CCLD = $(CC) | ||||||
| LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ | LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ | ||||||
| AM_V_CCLD = $(am__v_CCLD_$(V)) | AM_V_CCLD = $(am__v_CCLD_@AM_V@) | ||||||
| am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) | am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) | ||||||
| am__v_CCLD_0 = @echo "  CCLD    " $@; | am__v_CCLD_0 = @echo "  CCLD    " $@; | ||||||
| AM_V_GEN = $(am__v_GEN_$(V)) | am__v_CCLD_1 =  | ||||||
| am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) |  | ||||||
| am__v_GEN_0 = @echo "  GEN   " $@; |  | ||||||
| SOURCES = $(libudf_a_SOURCES) | SOURCES = $(libudf_a_SOURCES) | ||||||
|  | am__can_run_installinfo = \
 | ||||||
|  |   case $$AM_UPDATE_INFO_DIR in \
 | ||||||
|  |     n|no|NO) false;; \
 | ||||||
|  |     *) (install-info --version) >/dev/null 2>&1;; \
 | ||||||
|  |   esac | ||||||
|  | am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) | ||||||
|  | # Read a list of newline-separated strings from the standard input,
 | ||||||
|  | # and print each of them once, without duplicates.  Input order is
 | ||||||
|  | # *not* preserved.
 | ||||||
|  | am__uniquify_input = $(AWK) '\
 | ||||||
|  |   BEGIN { nonempty = 0; } \
 | ||||||
|  |   { items[$$0] = 1; nonempty = 1; } \
 | ||||||
|  |   END { if (nonempty) { for (i in items) print i; }; } \
 | ||||||
|  | ' | ||||||
|  | # Make sure the list of sources is unique.  This is necessary because,
 | ||||||
|  | # e.g., the same source file might be shared among _SOURCES variables
 | ||||||
|  | # for different programs/libraries.
 | ||||||
|  | am__define_uniq_tagged_files = \
 | ||||||
|  |   list='$(am__tagged_files)'; \
 | ||||||
|  |   unique=`for i in $$list; do \
 | ||||||
|  |     if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 | ||||||
|  |   done | $(am__uniquify_input)` | ||||||
| ETAGS = etags | ETAGS = etags | ||||||
| CTAGS = ctags | CTAGS = ctags | ||||||
| ACLOCAL = @ACLOCAL@ | ACLOCAL = @ACLOCAL@ | ||||||
|  | @ -207,7 +283,8 @@ $(am__aclocal_m4_deps): | ||||||
| 
 | 
 | ||||||
| clean-noinstLIBRARIES: | clean-noinstLIBRARIES: | ||||||
| 	-test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) | 	-test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) | ||||||
| libudf.a: $(libudf_a_OBJECTS) $(libudf_a_DEPENDENCIES)  | 
 | ||||||
|  | libudf.a: $(libudf_a_OBJECTS) $(libudf_a_DEPENDENCIES) $(EXTRA_libudf_a_DEPENDENCIES)  | ||||||
| 	$(AM_V_at)-rm -f libudf.a | 	$(AM_V_at)-rm -f libudf.a | ||||||
| 	$(AM_V_AR)$(libudf_a_AR) libudf.a $(libudf_a_OBJECTS) $(libudf_a_LIBADD) | 	$(AM_V_AR)$(libudf_a_AR) libudf.a $(libudf_a_OBJECTS) $(libudf_a_LIBADD) | ||||||
| 	$(AM_V_at)$(RANLIB) libudf.a | 	$(AM_V_at)$(RANLIB) libudf.a | ||||||
|  | @ -219,73 +296,50 @@ distclean-compile: | ||||||
| 	-rm -f *.tab.c | 	-rm -f *.tab.c | ||||||
| 
 | 
 | ||||||
| .c.o: | .c.o: | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(COMPILE) -c -o $@ $< | ||||||
| 	$(COMPILE) -c $< |  | ||||||
| 
 | 
 | ||||||
| .c.obj: | .c.obj: | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` | ||||||
| 	$(COMPILE) -c `$(CYGPATH_W) '$<'` |  | ||||||
| 
 | 
 | ||||||
| libudf_a-udf.o: udf.c | libudf_a-udf.o: udf.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libudf_a_CFLAGS) $(CFLAGS) -c -o libudf_a-udf.o `test -f 'udf.c' || echo '$(srcdir)/'`udf.c | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libudf_a_CFLAGS) $(CFLAGS) -c -o libudf_a-udf.o `test -f 'udf.c' || echo '$(srcdir)/'`udf.c |  | ||||||
| 
 | 
 | ||||||
| libudf_a-udf.obj: udf.c | libudf_a-udf.obj: udf.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libudf_a_CFLAGS) $(CFLAGS) -c -o libudf_a-udf.obj `if test -f 'udf.c'; then $(CYGPATH_W) 'udf.c'; else $(CYGPATH_W) '$(srcdir)/udf.c'; fi` | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libudf_a_CFLAGS) $(CFLAGS) -c -o libudf_a-udf.obj `if test -f 'udf.c'; then $(CYGPATH_W) 'udf.c'; else $(CYGPATH_W) '$(srcdir)/udf.c'; fi` |  | ||||||
| 
 | 
 | ||||||
| libudf_a-udf_file.o: udf_file.c | libudf_a-udf_file.o: udf_file.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libudf_a_CFLAGS) $(CFLAGS) -c -o libudf_a-udf_file.o `test -f 'udf_file.c' || echo '$(srcdir)/'`udf_file.c | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libudf_a_CFLAGS) $(CFLAGS) -c -o libudf_a-udf_file.o `test -f 'udf_file.c' || echo '$(srcdir)/'`udf_file.c |  | ||||||
| 
 | 
 | ||||||
| libudf_a-udf_file.obj: udf_file.c | libudf_a-udf_file.obj: udf_file.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libudf_a_CFLAGS) $(CFLAGS) -c -o libudf_a-udf_file.obj `if test -f 'udf_file.c'; then $(CYGPATH_W) 'udf_file.c'; else $(CYGPATH_W) '$(srcdir)/udf_file.c'; fi` | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libudf_a_CFLAGS) $(CFLAGS) -c -o libudf_a-udf_file.obj `if test -f 'udf_file.c'; then $(CYGPATH_W) 'udf_file.c'; else $(CYGPATH_W) '$(srcdir)/udf_file.c'; fi` |  | ||||||
| 
 | 
 | ||||||
| libudf_a-udf_fs.o: udf_fs.c | libudf_a-udf_fs.o: udf_fs.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libudf_a_CFLAGS) $(CFLAGS) -c -o libudf_a-udf_fs.o `test -f 'udf_fs.c' || echo '$(srcdir)/'`udf_fs.c | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libudf_a_CFLAGS) $(CFLAGS) -c -o libudf_a-udf_fs.o `test -f 'udf_fs.c' || echo '$(srcdir)/'`udf_fs.c |  | ||||||
| 
 | 
 | ||||||
| libudf_a-udf_fs.obj: udf_fs.c | libudf_a-udf_fs.obj: udf_fs.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libudf_a_CFLAGS) $(CFLAGS) -c -o libudf_a-udf_fs.obj `if test -f 'udf_fs.c'; then $(CYGPATH_W) 'udf_fs.c'; else $(CYGPATH_W) '$(srcdir)/udf_fs.c'; fi` | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libudf_a_CFLAGS) $(CFLAGS) -c -o libudf_a-udf_fs.obj `if test -f 'udf_fs.c'; then $(CYGPATH_W) 'udf_fs.c'; else $(CYGPATH_W) '$(srcdir)/udf_fs.c'; fi` |  | ||||||
| 
 | 
 | ||||||
| libudf_a-udf_time.o: udf_time.c | libudf_a-udf_time.o: udf_time.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libudf_a_CFLAGS) $(CFLAGS) -c -o libudf_a-udf_time.o `test -f 'udf_time.c' || echo '$(srcdir)/'`udf_time.c | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libudf_a_CFLAGS) $(CFLAGS) -c -o libudf_a-udf_time.o `test -f 'udf_time.c' || echo '$(srcdir)/'`udf_time.c |  | ||||||
| 
 | 
 | ||||||
| libudf_a-udf_time.obj: udf_time.c | libudf_a-udf_time.obj: udf_time.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libudf_a_CFLAGS) $(CFLAGS) -c -o libudf_a-udf_time.obj `if test -f 'udf_time.c'; then $(CYGPATH_W) 'udf_time.c'; else $(CYGPATH_W) '$(srcdir)/udf_time.c'; fi` | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libudf_a_CFLAGS) $(CFLAGS) -c -o libudf_a-udf_time.obj `if test -f 'udf_time.c'; then $(CYGPATH_W) 'udf_time.c'; else $(CYGPATH_W) '$(srcdir)/udf_time.c'; fi` |  | ||||||
| 
 | 
 | ||||||
| libudf_a-filemode.o: filemode.c | libudf_a-filemode.o: filemode.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libudf_a_CFLAGS) $(CFLAGS) -c -o libudf_a-filemode.o `test -f 'filemode.c' || echo '$(srcdir)/'`filemode.c | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libudf_a_CFLAGS) $(CFLAGS) -c -o libudf_a-filemode.o `test -f 'filemode.c' || echo '$(srcdir)/'`filemode.c |  | ||||||
| 
 | 
 | ||||||
| libudf_a-filemode.obj: filemode.c | libudf_a-filemode.obj: filemode.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libudf_a_CFLAGS) $(CFLAGS) -c -o libudf_a-filemode.obj `if test -f 'filemode.c'; then $(CYGPATH_W) 'filemode.c'; else $(CYGPATH_W) '$(srcdir)/filemode.c'; fi` | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libudf_a_CFLAGS) $(CFLAGS) -c -o libudf_a-filemode.obj `if test -f 'filemode.c'; then $(CYGPATH_W) 'filemode.c'; else $(CYGPATH_W) '$(srcdir)/filemode.c'; fi` |  | ||||||
| 
 | 
 | ||||||
| ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) | ID: $(am__tagged_files) | ||||||
| 	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
 | 	$(am__define_uniq_tagged_files); mkid -fID $$unique | ||||||
| 	unique=`for i in $$list; do \
 | tags: tags-am | ||||||
| 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 | TAGS: tags | ||||||
| 	  done | \
 |  | ||||||
| 	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
 |  | ||||||
| 	      END { if (nonempty) { for (i in files) print i; }; }'`; \
 |  | ||||||
| 	mkid -fID $$unique |  | ||||||
| tags: TAGS |  | ||||||
| 
 | 
 | ||||||
| TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \ | tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) | ||||||
| 		$(TAGS_FILES) $(LISP) |  | ||||||
| 	set x; \
 | 	set x; \
 | ||||||
| 	here=`pwd`; \
 | 	here=`pwd`; \
 | ||||||
| 	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 | 	$(am__define_uniq_tagged_files); \
 | ||||||
| 	unique=`for i in $$list; do \
 |  | ||||||
| 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 |  | ||||||
| 	  done | \
 |  | ||||||
| 	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
 |  | ||||||
| 	      END { if (nonempty) { for (i in files) print i; }; }'`; \
 |  | ||||||
| 	shift; \
 | 	shift; \
 | ||||||
| 	if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
 | 	if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
 | ||||||
| 	  test -n "$$unique" || unique=$$empty_fix; \
 | 	  test -n "$$unique" || unique=$$empty_fix; \
 | ||||||
|  | @ -297,15 +351,11 @@ TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \ | ||||||
| 	      $$unique; \
 | 	      $$unique; \
 | ||||||
| 	  fi; \
 | 	  fi; \
 | ||||||
| 	fi | 	fi | ||||||
| ctags: CTAGS | ctags: ctags-am | ||||||
| CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \ | 
 | ||||||
| 		$(TAGS_FILES) $(LISP) | CTAGS: ctags | ||||||
| 	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 | ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) | ||||||
| 	unique=`for i in $$list; do \
 | 	$(am__define_uniq_tagged_files); \
 | ||||||
| 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 |  | ||||||
| 	  done | \
 |  | ||||||
| 	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
 |  | ||||||
| 	      END { if (nonempty) { for (i in files) print i; }; }'`; \
 |  | ||||||
| 	test -z "$(CTAGS_ARGS)$$unique" \
 | 	test -z "$(CTAGS_ARGS)$$unique" \
 | ||||||
| 	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
 | 	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
 | ||||||
| 	     $$unique | 	     $$unique | ||||||
|  | @ -314,6 +364,21 @@ GTAGS: | ||||||
| 	here=`$(am__cd) $(top_builddir) && pwd` \
 | 	here=`$(am__cd) $(top_builddir) && pwd` \
 | ||||||
| 	  && $(am__cd) $(top_srcdir) \
 | 	  && $(am__cd) $(top_srcdir) \
 | ||||||
| 	  && gtags -i $(GTAGS_ARGS) "$$here" | 	  && gtags -i $(GTAGS_ARGS) "$$here" | ||||||
|  | cscopelist: cscopelist-am | ||||||
|  | 
 | ||||||
|  | cscopelist-am: $(am__tagged_files) | ||||||
|  | 	list='$(am__tagged_files)'; \
 | ||||||
|  | 	case "$(srcdir)" in \
 | ||||||
|  | 	  [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
 | ||||||
|  | 	  *) sdir=$(subdir)/$(srcdir) ;; \
 | ||||||
|  | 	esac; \
 | ||||||
|  | 	for i in $$list; do \
 | ||||||
|  | 	  if test -f "$$i"; then \
 | ||||||
|  | 	    echo "$(subdir)/$$i"; \
 | ||||||
|  | 	  else \
 | ||||||
|  | 	    echo "$$sdir/$$i"; \
 | ||||||
|  | 	  fi; \
 | ||||||
|  | 	done >> $(top_builddir)/cscope.files | ||||||
| 
 | 
 | ||||||
| distclean-tags: | distclean-tags: | ||||||
| 	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags | 	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags | ||||||
|  | @ -331,10 +396,15 @@ install-am: all-am | ||||||
| 
 | 
 | ||||||
| installcheck: installcheck-am | installcheck: installcheck-am | ||||||
| install-strip: | install-strip: | ||||||
|  | 	if test -z '$(STRIP)'; then \
 | ||||||
| 	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 | 	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 | ||||||
| 	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 | 	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 | ||||||
| 	  `test -z '$(STRIP)' || \
 | 	      install; \
 | ||||||
| 	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install | 	else \
 | ||||||
|  | 	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 | ||||||
|  | 	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 | ||||||
|  | 	    "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
 | ||||||
|  | 	fi | ||||||
| mostlyclean-generic: | mostlyclean-generic: | ||||||
| 
 | 
 | ||||||
| clean-generic: | clean-generic: | ||||||
|  | @ -415,17 +485,18 @@ uninstall-am: | ||||||
| 
 | 
 | ||||||
| .MAKE: install-am install-strip | .MAKE: install-am install-strip | ||||||
| 
 | 
 | ||||||
| .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ | .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ | ||||||
| 	clean-noinstLIBRARIES ctags distclean distclean-compile \
 | 	clean-noinstLIBRARIES cscopelist-am ctags ctags-am distclean \
 | ||||||
| 	distclean-generic distclean-tags dvi dvi-am html html-am info \
 | 	distclean-compile distclean-generic distclean-tags dvi dvi-am \
 | ||||||
| 	info-am install install-am install-data install-data-am \
 | 	html html-am info info-am install install-am install-data \
 | ||||||
| 	install-dvi install-dvi-am install-exec install-exec-am \
 | 	install-data-am install-dvi install-dvi-am install-exec \
 | ||||||
| 	install-html install-html-am install-info install-info-am \
 | 	install-exec-am install-html install-html-am install-info \
 | ||||||
| 	install-man install-pdf install-pdf-am install-ps \
 | 	install-info-am install-man install-pdf install-pdf-am \
 | ||||||
| 	install-ps-am install-strip installcheck installcheck-am \
 | 	install-ps install-ps-am install-strip installcheck \
 | ||||||
| 	installdirs maintainer-clean maintainer-clean-generic \
 | 	installcheck-am installdirs maintainer-clean \
 | ||||||
| 	mostlyclean mostlyclean-compile mostlyclean-generic pdf pdf-am \
 | 	maintainer-clean-generic mostlyclean mostlyclean-compile \
 | ||||||
| 	ps ps-am tags uninstall uninstall-am | 	mostlyclean-generic pdf pdf-am ps ps-am tags tags-am uninstall \
 | ||||||
|  | 	uninstall-am | ||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
| # Tell versions [3.59,3.63) of GNU make to not export all variables.
 | # Tell versions [3.59,3.63) of GNU make to not export all variables.
 | ||||||
|  |  | ||||||
|  | @ -1,9 +1,8 @@ | ||||||
| # Makefile.in generated by automake 1.11.1 from Makefile.am.
 | # Makefile.in generated by automake 1.14.1 from Makefile.am.
 | ||||||
| # @configure_input@
 | # @configure_input@
 | ||||||
| 
 | 
 | ||||||
| # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
 | # Copyright (C) 1994-2013 Free Software Foundation, Inc.
 | ||||||
| # 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
 | 
 | ||||||
| # Inc.
 |  | ||||||
| # This Makefile.in is free software; the Free Software Foundation
 | # This Makefile.in is free software; the Free Software Foundation
 | ||||||
| # gives unlimited permission to copy and/or distribute it,
 | # gives unlimited permission to copy and/or distribute it,
 | ||||||
| # with or without modifications, as long as this notice is preserved.
 | # with or without modifications, as long as this notice is preserved.
 | ||||||
|  | @ -16,6 +15,51 @@ | ||||||
| @SET_MAKE@ | @SET_MAKE@ | ||||||
| 
 | 
 | ||||||
| VPATH = @srcdir@ | VPATH = @srcdir@ | ||||||
|  | am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' | ||||||
|  | am__make_running_with_option = \
 | ||||||
|  |   case $${target_option-} in \
 | ||||||
|  |       ?) ;; \
 | ||||||
|  |       *) echo "am__make_running_with_option: internal error: invalid" \
 | ||||||
|  |               "target option '$${target_option-}' specified" >&2; \
 | ||||||
|  |          exit 1;; \
 | ||||||
|  |   esac; \
 | ||||||
|  |   has_opt=no; \
 | ||||||
|  |   sane_makeflags=$$MAKEFLAGS; \
 | ||||||
|  |   if $(am__is_gnu_make); then \
 | ||||||
|  |     sane_makeflags=$$MFLAGS; \
 | ||||||
|  |   else \
 | ||||||
|  |     case $$MAKEFLAGS in \
 | ||||||
|  |       *\\[\ \	]*) \
 | ||||||
|  |         bs=\\; \
 | ||||||
|  |         sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
 | ||||||
|  |           | sed "s/$$bs$$bs[$$bs $$bs	]*//g"`;; \
 | ||||||
|  |     esac; \
 | ||||||
|  |   fi; \
 | ||||||
|  |   skip_next=no; \
 | ||||||
|  |   strip_trailopt () \
 | ||||||
|  |   { \
 | ||||||
|  |     flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
 | ||||||
|  |   }; \
 | ||||||
|  |   for flg in $$sane_makeflags; do \
 | ||||||
|  |     test $$skip_next = yes && { skip_next=no; continue; }; \
 | ||||||
|  |     case $$flg in \
 | ||||||
|  |       *=*|--*) continue;; \
 | ||||||
|  |         -*I) strip_trailopt 'I'; skip_next=yes;; \
 | ||||||
|  |       -*I?*) strip_trailopt 'I';; \
 | ||||||
|  |         -*O) strip_trailopt 'O'; skip_next=yes;; \
 | ||||||
|  |       -*O?*) strip_trailopt 'O';; \
 | ||||||
|  |         -*l) strip_trailopt 'l'; skip_next=yes;; \
 | ||||||
|  |       -*l?*) strip_trailopt 'l';; \
 | ||||||
|  |       -[dEDm]) skip_next=yes;; \
 | ||||||
|  |       -[JT]) skip_next=yes;; \
 | ||||||
|  |     esac; \
 | ||||||
|  |     case $$flg in \
 | ||||||
|  |       *$$target_option*) has_opt=yes; break;; \
 | ||||||
|  |     esac; \
 | ||||||
|  |   done; \
 | ||||||
|  |   test $$has_opt = yes | ||||||
|  | am__make_dryrun = (target_option=n; $(am__make_running_with_option)) | ||||||
|  | am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) | ||||||
| pkgdatadir = $(datadir)/@PACKAGE@ | pkgdatadir = $(datadir)/@PACKAGE@ | ||||||
| pkgincludedir = $(includedir)/@PACKAGE@ | pkgincludedir = $(includedir)/@PACKAGE@ | ||||||
| pkglibdir = $(libdir)/@PACKAGE@ | pkglibdir = $(libdir)/@PACKAGE@ | ||||||
|  | @ -44,12 +88,10 @@ CONFIG_CLEAN_VPATH_FILES = | ||||||
| LIBRARIES = $(noinst_LIBRARIES) | LIBRARIES = $(noinst_LIBRARIES) | ||||||
| AR = ar | AR = ar | ||||||
| ARFLAGS = cru | ARFLAGS = cru | ||||||
| AM_V_AR = $(am__v_AR_$(V)) | AM_V_AR = $(am__v_AR_@AM_V@) | ||||||
| am__v_AR_ = $(am__v_AR_$(AM_DEFAULT_VERBOSITY)) | am__v_AR_ = $(am__v_AR_@AM_DEFAULT_V@) | ||||||
| am__v_AR_0 = @echo "  AR      " $@; | am__v_AR_0 = @echo "  AR      " $@; | ||||||
| AM_V_at = $(am__v_at_$(V)) | am__v_AR_1 =  | ||||||
| am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) |  | ||||||
| am__v_at_0 = @ |  | ||||||
| libmssys_a_AR = $(AR) $(ARFLAGS) | libmssys_a_AR = $(AR) $(ARFLAGS) | ||||||
| libmssys_a_LIBADD = | libmssys_a_LIBADD = | ||||||
| am_libmssys_a_OBJECTS = libmssys_a-fat12.$(OBJEXT) \
 | am_libmssys_a_OBJECTS = libmssys_a-fat12.$(OBJEXT) \
 | ||||||
|  | @ -57,26 +99,60 @@ am_libmssys_a_OBJECTS = libmssys_a-fat12.$(OBJEXT) \ | ||||||
| 	libmssys_a-ntfs.$(OBJEXT) libmssys_a-partition_info.$(OBJEXT) \
 | 	libmssys_a-ntfs.$(OBJEXT) libmssys_a-partition_info.$(OBJEXT) \
 | ||||||
| 	libmssys_a-br.$(OBJEXT) libmssys_a-file.$(OBJEXT) | 	libmssys_a-br.$(OBJEXT) libmssys_a-file.$(OBJEXT) | ||||||
| libmssys_a_OBJECTS = $(am_libmssys_a_OBJECTS) | libmssys_a_OBJECTS = $(am_libmssys_a_OBJECTS) | ||||||
|  | AM_V_P = $(am__v_P_@AM_V@) | ||||||
|  | am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) | ||||||
|  | am__v_P_0 = false | ||||||
|  | am__v_P_1 = : | ||||||
|  | AM_V_GEN = $(am__v_GEN_@AM_V@) | ||||||
|  | am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) | ||||||
|  | am__v_GEN_0 = @echo "  GEN     " $@; | ||||||
|  | am__v_GEN_1 =  | ||||||
|  | AM_V_at = $(am__v_at_@AM_V@) | ||||||
|  | am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) | ||||||
|  | am__v_at_0 = @ | ||||||
|  | am__v_at_1 =  | ||||||
| DEFAULT_INCLUDES = -I.@am__isrc@ | DEFAULT_INCLUDES = -I.@am__isrc@ | ||||||
| depcomp = | depcomp = | ||||||
| am__depfiles_maybe = | am__depfiles_maybe = | ||||||
| AM_V_lt = $(am__v_lt_$(V)) | AM_V_lt = $(am__v_lt_@AM_V@) | ||||||
| am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) | am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) | ||||||
| am__v_lt_0 = --silent | am__v_lt_0 = --silent | ||||||
|  | am__v_lt_1 =  | ||||||
| COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
 | COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
 | ||||||
| 	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) | 	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) | ||||||
| AM_V_CC = $(am__v_CC_$(V)) | AM_V_CC = $(am__v_CC_@AM_V@) | ||||||
| am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) | am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) | ||||||
| am__v_CC_0 = @echo "  CC      " $@; | am__v_CC_0 = @echo "  CC      " $@; | ||||||
|  | am__v_CC_1 =  | ||||||
| CCLD = $(CC) | CCLD = $(CC) | ||||||
| LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ | LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ | ||||||
| AM_V_CCLD = $(am__v_CCLD_$(V)) | AM_V_CCLD = $(am__v_CCLD_@AM_V@) | ||||||
| am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) | am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) | ||||||
| am__v_CCLD_0 = @echo "  CCLD    " $@; | am__v_CCLD_0 = @echo "  CCLD    " $@; | ||||||
| AM_V_GEN = $(am__v_GEN_$(V)) | am__v_CCLD_1 =  | ||||||
| am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) |  | ||||||
| am__v_GEN_0 = @echo "  GEN   " $@; |  | ||||||
| SOURCES = $(libmssys_a_SOURCES) | SOURCES = $(libmssys_a_SOURCES) | ||||||
|  | am__can_run_installinfo = \
 | ||||||
|  |   case $$AM_UPDATE_INFO_DIR in \
 | ||||||
|  |     n|no|NO) false;; \
 | ||||||
|  |     *) (install-info --version) >/dev/null 2>&1;; \
 | ||||||
|  |   esac | ||||||
|  | am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) | ||||||
|  | # Read a list of newline-separated strings from the standard input,
 | ||||||
|  | # and print each of them once, without duplicates.  Input order is
 | ||||||
|  | # *not* preserved.
 | ||||||
|  | am__uniquify_input = $(AWK) '\
 | ||||||
|  |   BEGIN { nonempty = 0; } \
 | ||||||
|  |   { items[$$0] = 1; nonempty = 1; } \
 | ||||||
|  |   END { if (nonempty) { for (i in items) print i; }; } \
 | ||||||
|  | ' | ||||||
|  | # Make sure the list of sources is unique.  This is necessary because,
 | ||||||
|  | # e.g., the same source file might be shared among _SOURCES variables
 | ||||||
|  | # for different programs/libraries.
 | ||||||
|  | am__define_uniq_tagged_files = \
 | ||||||
|  |   list='$(am__tagged_files)'; \
 | ||||||
|  |   unique=`for i in $$list; do \
 | ||||||
|  |     if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 | ||||||
|  |   done | $(am__uniquify_input)` | ||||||
| ETAGS = etags | ETAGS = etags | ||||||
| CTAGS = ctags | CTAGS = ctags | ||||||
| ACLOCAL = @ACLOCAL@ | ACLOCAL = @ACLOCAL@ | ||||||
|  | @ -207,7 +283,8 @@ $(am__aclocal_m4_deps): | ||||||
| 
 | 
 | ||||||
| clean-noinstLIBRARIES: | clean-noinstLIBRARIES: | ||||||
| 	-test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) | 	-test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) | ||||||
| libmssys.a: $(libmssys_a_OBJECTS) $(libmssys_a_DEPENDENCIES)  | 
 | ||||||
|  | libmssys.a: $(libmssys_a_OBJECTS) $(libmssys_a_DEPENDENCIES) $(EXTRA_libmssys_a_DEPENDENCIES)  | ||||||
| 	$(AM_V_at)-rm -f libmssys.a | 	$(AM_V_at)-rm -f libmssys.a | ||||||
| 	$(AM_V_AR)$(libmssys_a_AR) libmssys.a $(libmssys_a_OBJECTS) $(libmssys_a_LIBADD) | 	$(AM_V_AR)$(libmssys_a_AR) libmssys.a $(libmssys_a_OBJECTS) $(libmssys_a_LIBADD) | ||||||
| 	$(AM_V_at)$(RANLIB) libmssys.a | 	$(AM_V_at)$(RANLIB) libmssys.a | ||||||
|  | @ -219,89 +296,62 @@ distclean-compile: | ||||||
| 	-rm -f *.tab.c | 	-rm -f *.tab.c | ||||||
| 
 | 
 | ||||||
| .c.o: | .c.o: | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(COMPILE) -c -o $@ $< | ||||||
| 	$(COMPILE) -c $< |  | ||||||
| 
 | 
 | ||||||
| .c.obj: | .c.obj: | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` | ||||||
| 	$(COMPILE) -c `$(CYGPATH_W) '$<'` |  | ||||||
| 
 | 
 | ||||||
| libmssys_a-fat12.o: fat12.c | libmssys_a-fat12.o: fat12.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmssys_a_CFLAGS) $(CFLAGS) -c -o libmssys_a-fat12.o `test -f 'fat12.c' || echo '$(srcdir)/'`fat12.c | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmssys_a_CFLAGS) $(CFLAGS) -c -o libmssys_a-fat12.o `test -f 'fat12.c' || echo '$(srcdir)/'`fat12.c |  | ||||||
| 
 | 
 | ||||||
| libmssys_a-fat12.obj: fat12.c | libmssys_a-fat12.obj: fat12.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmssys_a_CFLAGS) $(CFLAGS) -c -o libmssys_a-fat12.obj `if test -f 'fat12.c'; then $(CYGPATH_W) 'fat12.c'; else $(CYGPATH_W) '$(srcdir)/fat12.c'; fi` | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmssys_a_CFLAGS) $(CFLAGS) -c -o libmssys_a-fat12.obj `if test -f 'fat12.c'; then $(CYGPATH_W) 'fat12.c'; else $(CYGPATH_W) '$(srcdir)/fat12.c'; fi` |  | ||||||
| 
 | 
 | ||||||
| libmssys_a-fat16.o: fat16.c | libmssys_a-fat16.o: fat16.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmssys_a_CFLAGS) $(CFLAGS) -c -o libmssys_a-fat16.o `test -f 'fat16.c' || echo '$(srcdir)/'`fat16.c | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmssys_a_CFLAGS) $(CFLAGS) -c -o libmssys_a-fat16.o `test -f 'fat16.c' || echo '$(srcdir)/'`fat16.c |  | ||||||
| 
 | 
 | ||||||
| libmssys_a-fat16.obj: fat16.c | libmssys_a-fat16.obj: fat16.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmssys_a_CFLAGS) $(CFLAGS) -c -o libmssys_a-fat16.obj `if test -f 'fat16.c'; then $(CYGPATH_W) 'fat16.c'; else $(CYGPATH_W) '$(srcdir)/fat16.c'; fi` | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmssys_a_CFLAGS) $(CFLAGS) -c -o libmssys_a-fat16.obj `if test -f 'fat16.c'; then $(CYGPATH_W) 'fat16.c'; else $(CYGPATH_W) '$(srcdir)/fat16.c'; fi` |  | ||||||
| 
 | 
 | ||||||
| libmssys_a-fat32.o: fat32.c | libmssys_a-fat32.o: fat32.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmssys_a_CFLAGS) $(CFLAGS) -c -o libmssys_a-fat32.o `test -f 'fat32.c' || echo '$(srcdir)/'`fat32.c | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmssys_a_CFLAGS) $(CFLAGS) -c -o libmssys_a-fat32.o `test -f 'fat32.c' || echo '$(srcdir)/'`fat32.c |  | ||||||
| 
 | 
 | ||||||
| libmssys_a-fat32.obj: fat32.c | libmssys_a-fat32.obj: fat32.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmssys_a_CFLAGS) $(CFLAGS) -c -o libmssys_a-fat32.obj `if test -f 'fat32.c'; then $(CYGPATH_W) 'fat32.c'; else $(CYGPATH_W) '$(srcdir)/fat32.c'; fi` | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmssys_a_CFLAGS) $(CFLAGS) -c -o libmssys_a-fat32.obj `if test -f 'fat32.c'; then $(CYGPATH_W) 'fat32.c'; else $(CYGPATH_W) '$(srcdir)/fat32.c'; fi` |  | ||||||
| 
 | 
 | ||||||
| libmssys_a-ntfs.o: ntfs.c | libmssys_a-ntfs.o: ntfs.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmssys_a_CFLAGS) $(CFLAGS) -c -o libmssys_a-ntfs.o `test -f 'ntfs.c' || echo '$(srcdir)/'`ntfs.c | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmssys_a_CFLAGS) $(CFLAGS) -c -o libmssys_a-ntfs.o `test -f 'ntfs.c' || echo '$(srcdir)/'`ntfs.c |  | ||||||
| 
 | 
 | ||||||
| libmssys_a-ntfs.obj: ntfs.c | libmssys_a-ntfs.obj: ntfs.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmssys_a_CFLAGS) $(CFLAGS) -c -o libmssys_a-ntfs.obj `if test -f 'ntfs.c'; then $(CYGPATH_W) 'ntfs.c'; else $(CYGPATH_W) '$(srcdir)/ntfs.c'; fi` | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmssys_a_CFLAGS) $(CFLAGS) -c -o libmssys_a-ntfs.obj `if test -f 'ntfs.c'; then $(CYGPATH_W) 'ntfs.c'; else $(CYGPATH_W) '$(srcdir)/ntfs.c'; fi` |  | ||||||
| 
 | 
 | ||||||
| libmssys_a-partition_info.o: partition_info.c | libmssys_a-partition_info.o: partition_info.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmssys_a_CFLAGS) $(CFLAGS) -c -o libmssys_a-partition_info.o `test -f 'partition_info.c' || echo '$(srcdir)/'`partition_info.c | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmssys_a_CFLAGS) $(CFLAGS) -c -o libmssys_a-partition_info.o `test -f 'partition_info.c' || echo '$(srcdir)/'`partition_info.c |  | ||||||
| 
 | 
 | ||||||
| libmssys_a-partition_info.obj: partition_info.c | libmssys_a-partition_info.obj: partition_info.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmssys_a_CFLAGS) $(CFLAGS) -c -o libmssys_a-partition_info.obj `if test -f 'partition_info.c'; then $(CYGPATH_W) 'partition_info.c'; else $(CYGPATH_W) '$(srcdir)/partition_info.c'; fi` | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmssys_a_CFLAGS) $(CFLAGS) -c -o libmssys_a-partition_info.obj `if test -f 'partition_info.c'; then $(CYGPATH_W) 'partition_info.c'; else $(CYGPATH_W) '$(srcdir)/partition_info.c'; fi` |  | ||||||
| 
 | 
 | ||||||
| libmssys_a-br.o: br.c | libmssys_a-br.o: br.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmssys_a_CFLAGS) $(CFLAGS) -c -o libmssys_a-br.o `test -f 'br.c' || echo '$(srcdir)/'`br.c | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmssys_a_CFLAGS) $(CFLAGS) -c -o libmssys_a-br.o `test -f 'br.c' || echo '$(srcdir)/'`br.c |  | ||||||
| 
 | 
 | ||||||
| libmssys_a-br.obj: br.c | libmssys_a-br.obj: br.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmssys_a_CFLAGS) $(CFLAGS) -c -o libmssys_a-br.obj `if test -f 'br.c'; then $(CYGPATH_W) 'br.c'; else $(CYGPATH_W) '$(srcdir)/br.c'; fi` | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmssys_a_CFLAGS) $(CFLAGS) -c -o libmssys_a-br.obj `if test -f 'br.c'; then $(CYGPATH_W) 'br.c'; else $(CYGPATH_W) '$(srcdir)/br.c'; fi` |  | ||||||
| 
 | 
 | ||||||
| libmssys_a-file.o: file.c | libmssys_a-file.o: file.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmssys_a_CFLAGS) $(CFLAGS) -c -o libmssys_a-file.o `test -f 'file.c' || echo '$(srcdir)/'`file.c | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmssys_a_CFLAGS) $(CFLAGS) -c -o libmssys_a-file.o `test -f 'file.c' || echo '$(srcdir)/'`file.c |  | ||||||
| 
 | 
 | ||||||
| libmssys_a-file.obj: file.c | libmssys_a-file.obj: file.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmssys_a_CFLAGS) $(CFLAGS) -c -o libmssys_a-file.obj `if test -f 'file.c'; then $(CYGPATH_W) 'file.c'; else $(CYGPATH_W) '$(srcdir)/file.c'; fi` | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmssys_a_CFLAGS) $(CFLAGS) -c -o libmssys_a-file.obj `if test -f 'file.c'; then $(CYGPATH_W) 'file.c'; else $(CYGPATH_W) '$(srcdir)/file.c'; fi` |  | ||||||
| 
 | 
 | ||||||
| ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) | ID: $(am__tagged_files) | ||||||
| 	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
 | 	$(am__define_uniq_tagged_files); mkid -fID $$unique | ||||||
| 	unique=`for i in $$list; do \
 | tags: tags-am | ||||||
| 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 | TAGS: tags | ||||||
| 	  done | \
 |  | ||||||
| 	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
 |  | ||||||
| 	      END { if (nonempty) { for (i in files) print i; }; }'`; \
 |  | ||||||
| 	mkid -fID $$unique |  | ||||||
| tags: TAGS |  | ||||||
| 
 | 
 | ||||||
| TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \ | tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) | ||||||
| 		$(TAGS_FILES) $(LISP) |  | ||||||
| 	set x; \
 | 	set x; \
 | ||||||
| 	here=`pwd`; \
 | 	here=`pwd`; \
 | ||||||
| 	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 | 	$(am__define_uniq_tagged_files); \
 | ||||||
| 	unique=`for i in $$list; do \
 |  | ||||||
| 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 |  | ||||||
| 	  done | \
 |  | ||||||
| 	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
 |  | ||||||
| 	      END { if (nonempty) { for (i in files) print i; }; }'`; \
 |  | ||||||
| 	shift; \
 | 	shift; \
 | ||||||
| 	if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
 | 	if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
 | ||||||
| 	  test -n "$$unique" || unique=$$empty_fix; \
 | 	  test -n "$$unique" || unique=$$empty_fix; \
 | ||||||
|  | @ -313,15 +363,11 @@ TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \ | ||||||
| 	      $$unique; \
 | 	      $$unique; \
 | ||||||
| 	  fi; \
 | 	  fi; \
 | ||||||
| 	fi | 	fi | ||||||
| ctags: CTAGS | ctags: ctags-am | ||||||
| CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \ | 
 | ||||||
| 		$(TAGS_FILES) $(LISP) | CTAGS: ctags | ||||||
| 	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 | ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) | ||||||
| 	unique=`for i in $$list; do \
 | 	$(am__define_uniq_tagged_files); \
 | ||||||
| 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 |  | ||||||
| 	  done | \
 |  | ||||||
| 	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
 |  | ||||||
| 	      END { if (nonempty) { for (i in files) print i; }; }'`; \
 |  | ||||||
| 	test -z "$(CTAGS_ARGS)$$unique" \
 | 	test -z "$(CTAGS_ARGS)$$unique" \
 | ||||||
| 	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
 | 	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
 | ||||||
| 	     $$unique | 	     $$unique | ||||||
|  | @ -330,6 +376,21 @@ GTAGS: | ||||||
| 	here=`$(am__cd) $(top_builddir) && pwd` \
 | 	here=`$(am__cd) $(top_builddir) && pwd` \
 | ||||||
| 	  && $(am__cd) $(top_srcdir) \
 | 	  && $(am__cd) $(top_srcdir) \
 | ||||||
| 	  && gtags -i $(GTAGS_ARGS) "$$here" | 	  && gtags -i $(GTAGS_ARGS) "$$here" | ||||||
|  | cscopelist: cscopelist-am | ||||||
|  | 
 | ||||||
|  | cscopelist-am: $(am__tagged_files) | ||||||
|  | 	list='$(am__tagged_files)'; \
 | ||||||
|  | 	case "$(srcdir)" in \
 | ||||||
|  | 	  [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
 | ||||||
|  | 	  *) sdir=$(subdir)/$(srcdir) ;; \
 | ||||||
|  | 	esac; \
 | ||||||
|  | 	for i in $$list; do \
 | ||||||
|  | 	  if test -f "$$i"; then \
 | ||||||
|  | 	    echo "$(subdir)/$$i"; \
 | ||||||
|  | 	  else \
 | ||||||
|  | 	    echo "$$sdir/$$i"; \
 | ||||||
|  | 	  fi; \
 | ||||||
|  | 	done >> $(top_builddir)/cscope.files | ||||||
| 
 | 
 | ||||||
| distclean-tags: | distclean-tags: | ||||||
| 	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags | 	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags | ||||||
|  | @ -347,10 +408,15 @@ install-am: all-am | ||||||
| 
 | 
 | ||||||
| installcheck: installcheck-am | installcheck: installcheck-am | ||||||
| install-strip: | install-strip: | ||||||
|  | 	if test -z '$(STRIP)'; then \
 | ||||||
| 	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 | 	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 | ||||||
| 	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 | 	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 | ||||||
| 	  `test -z '$(STRIP)' || \
 | 	      install; \
 | ||||||
| 	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install | 	else \
 | ||||||
|  | 	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 | ||||||
|  | 	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 | ||||||
|  | 	    "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
 | ||||||
|  | 	fi | ||||||
| mostlyclean-generic: | mostlyclean-generic: | ||||||
| 
 | 
 | ||||||
| clean-generic: | clean-generic: | ||||||
|  | @ -431,17 +497,18 @@ uninstall-am: | ||||||
| 
 | 
 | ||||||
| .MAKE: install-am install-strip | .MAKE: install-am install-strip | ||||||
| 
 | 
 | ||||||
| .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ | .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ | ||||||
| 	clean-noinstLIBRARIES ctags distclean distclean-compile \
 | 	clean-noinstLIBRARIES cscopelist-am ctags ctags-am distclean \
 | ||||||
| 	distclean-generic distclean-tags dvi dvi-am html html-am info \
 | 	distclean-compile distclean-generic distclean-tags dvi dvi-am \
 | ||||||
| 	info-am install install-am install-data install-data-am \
 | 	html html-am info info-am install install-am install-data \
 | ||||||
| 	install-dvi install-dvi-am install-exec install-exec-am \
 | 	install-data-am install-dvi install-dvi-am install-exec \
 | ||||||
| 	install-html install-html-am install-info install-info-am \
 | 	install-exec-am install-html install-html-am install-info \
 | ||||||
| 	install-man install-pdf install-pdf-am install-ps \
 | 	install-info-am install-man install-pdf install-pdf-am \
 | ||||||
| 	install-ps-am install-strip installcheck installcheck-am \
 | 	install-ps install-ps-am install-strip installcheck \
 | ||||||
| 	installdirs maintainer-clean maintainer-clean-generic \
 | 	installcheck-am installdirs maintainer-clean \
 | ||||||
| 	mostlyclean mostlyclean-compile mostlyclean-generic pdf pdf-am \
 | 	maintainer-clean-generic mostlyclean mostlyclean-compile \
 | ||||||
| 	ps ps-am tags uninstall uninstall-am | 	mostlyclean-generic pdf pdf-am ps ps-am tags tags-am uninstall \
 | ||||||
|  | 	uninstall-am | ||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
| # Tell versions [3.59,3.63) of GNU make to not export all variables.
 | # Tell versions [3.59,3.63) of GNU make to not export all variables.
 | ||||||
|  |  | ||||||
							
								
								
									
										16
									
								
								src/rufus.rc
									
										
									
									
									
								
							
							
						
						
									
										16
									
								
								src/rufus.rc
									
										
									
									
									
								
							|  | @ -32,7 +32,7 @@ LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL | ||||||
| 
 | 
 | ||||||
| IDD_DIALOG DIALOGEX 12, 12, 242, 329 | IDD_DIALOG DIALOGEX 12, 12, 242, 329 | ||||||
| STYLE DS_SETFONT | DS_MODALFRAME | DS_CENTER | WS_MINIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU | STYLE DS_SETFONT | DS_MODALFRAME | DS_CENTER | WS_MINIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU | ||||||
| CAPTION "Rufus 1.5.0.554" | CAPTION "Rufus 1.5.0.555" | ||||||
| FONT 8, "Segoe UI", 400, 0, 0x1 | FONT 8, "Segoe UI", 400, 0, 0x1 | ||||||
| BEGIN | BEGIN | ||||||
|     DEFPUSHBUTTON   "Start",IDC_START,127,291,50,14 |     DEFPUSHBUTTON   "Start",IDC_START,127,291,50,14 | ||||||
|  | @ -164,7 +164,7 @@ END | ||||||
| 
 | 
 | ||||||
| IDD_DIALOG_XP DIALOGEX 12, 12, 242, 329 | IDD_DIALOG_XP DIALOGEX 12, 12, 242, 329 | ||||||
| STYLE DS_SETFONT | DS_MODALFRAME | DS_CENTER | WS_MINIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU | STYLE DS_SETFONT | DS_MODALFRAME | DS_CENTER | WS_MINIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU | ||||||
| CAPTION "Rufus 1.5.0.554" | CAPTION "Rufus 1.5.0.555" | ||||||
| FONT 8, "MS Shell Dlg", 400, 0, 0x1 | FONT 8, "MS Shell Dlg", 400, 0, 0x1 | ||||||
| BEGIN | BEGIN | ||||||
|     DEFPUSHBUTTON   "Start",IDC_START,127,291,50,14 |     DEFPUSHBUTTON   "Start",IDC_START,127,291,50,14 | ||||||
|  | @ -297,7 +297,7 @@ END | ||||||
| IDD_DIALOG_RTL DIALOGEX 12, 12, 242, 329 | IDD_DIALOG_RTL DIALOGEX 12, 12, 242, 329 | ||||||
| STYLE DS_SETFONT | DS_MODALFRAME | DS_CENTER | WS_MINIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU | STYLE DS_SETFONT | DS_MODALFRAME | DS_CENTER | WS_MINIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU | ||||||
| EXSTYLE WS_EX_RTLREADING | WS_EX_APPWINDOW | WS_EX_LAYOUTRTL | EXSTYLE WS_EX_RTLREADING | WS_EX_APPWINDOW | WS_EX_LAYOUTRTL | ||||||
| CAPTION "Rufus 1.5.0.554" | CAPTION "Rufus 1.5.0.555" | ||||||
| FONT 8, "Segoe UI", 400, 0, 0x1 | FONT 8, "Segoe UI", 400, 0, 0x1 | ||||||
| BEGIN | BEGIN | ||||||
|     DEFPUSHBUTTON   "Start",IDC_START,127,291,50,14 |     DEFPUSHBUTTON   "Start",IDC_START,127,291,50,14 | ||||||
|  | @ -437,7 +437,7 @@ END | ||||||
| IDD_DIALOG_RTL_XP DIALOGEX 12, 12, 242, 329 | IDD_DIALOG_RTL_XP DIALOGEX 12, 12, 242, 329 | ||||||
| STYLE DS_SETFONT | DS_MODALFRAME | DS_CENTER | WS_MINIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU | STYLE DS_SETFONT | DS_MODALFRAME | DS_CENTER | WS_MINIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU | ||||||
| EXSTYLE WS_EX_RTLREADING | WS_EX_APPWINDOW | WS_EX_LAYOUTRTL | EXSTYLE WS_EX_RTLREADING | WS_EX_APPWINDOW | WS_EX_LAYOUTRTL | ||||||
| CAPTION "Rufus 1.5.0.554" | CAPTION "Rufus 1.5.0.555" | ||||||
| FONT 8, "MS Shell Dlg", 400, 0, 0x1 | FONT 8, "MS Shell Dlg", 400, 0, 0x1 | ||||||
| BEGIN | BEGIN | ||||||
|     DEFPUSHBUTTON   "Start",IDC_START,127,291,50,14 |     DEFPUSHBUTTON   "Start",IDC_START,127,291,50,14 | ||||||
|  | @ -702,8 +702,8 @@ END | ||||||
| // | // | ||||||
| 
 | 
 | ||||||
| VS_VERSION_INFO VERSIONINFO | VS_VERSION_INFO VERSIONINFO | ||||||
|  FILEVERSION 1,5,0,554 |  FILEVERSION 1,5,0,555 | ||||||
|  PRODUCTVERSION 1,5,0,554 |  PRODUCTVERSION 1,5,0,555 | ||||||
|  FILEFLAGSMASK 0x3fL |  FILEFLAGSMASK 0x3fL | ||||||
| #ifdef _DEBUG | #ifdef _DEBUG | ||||||
|  FILEFLAGS 0x1L |  FILEFLAGS 0x1L | ||||||
|  | @ -720,13 +720,13 @@ BEGIN | ||||||
|         BEGIN |         BEGIN | ||||||
|             VALUE "CompanyName", "Akeo Consulting (http://akeo.ie)" |             VALUE "CompanyName", "Akeo Consulting (http://akeo.ie)" | ||||||
|             VALUE "FileDescription", "Rufus" |             VALUE "FileDescription", "Rufus" | ||||||
|             VALUE "FileVersion", "1.5.0.554" |             VALUE "FileVersion", "1.5.0.555" | ||||||
|             VALUE "InternalName", "Rufus" |             VALUE "InternalName", "Rufus" | ||||||
|             VALUE "LegalCopyright", "© 2011-2014 Pete Batard (GPL v3)" |             VALUE "LegalCopyright", "© 2011-2014 Pete Batard (GPL v3)" | ||||||
|             VALUE "LegalTrademarks", "http://www.gnu.org/copyleft/gpl.html" |             VALUE "LegalTrademarks", "http://www.gnu.org/copyleft/gpl.html" | ||||||
|             VALUE "OriginalFilename", "rufus.exe" |             VALUE "OriginalFilename", "rufus.exe" | ||||||
|             VALUE "ProductName", "Rufus" |             VALUE "ProductName", "Rufus" | ||||||
|             VALUE "ProductVersion", "1.5.0.554" |             VALUE "ProductVersion", "1.5.0.555" | ||||||
|         END |         END | ||||||
|     END |     END | ||||||
|     BLOCK "VarFileInfo" |     BLOCK "VarFileInfo" | ||||||
|  |  | ||||||
|  | @ -1339,7 +1339,7 @@ SIZE GetTextSize(HWND hCtrl) | ||||||
| { | { | ||||||
| 	SIZE sz = {0, 0}; | 	SIZE sz = {0, 0}; | ||||||
| 	HDC hDC; | 	HDC hDC; | ||||||
| 	wchar_t *wstr; | 	wchar_t *wstr = NULL; | ||||||
| 	int len; | 	int len; | ||||||
| 	HFONT hFont; | 	HFONT hFont; | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
|  | @ -1,9 +1,8 @@ | ||||||
| # Makefile.in generated by automake 1.11.1 from Makefile.am.
 | # Makefile.in generated by automake 1.14.1 from Makefile.am.
 | ||||||
| # @configure_input@
 | # @configure_input@
 | ||||||
| 
 | 
 | ||||||
| # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
 | # Copyright (C) 1994-2013 Free Software Foundation, Inc.
 | ||||||
| # 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
 | 
 | ||||||
| # Inc.
 |  | ||||||
| # This Makefile.in is free software; the Free Software Foundation
 | # This Makefile.in is free software; the Free Software Foundation
 | ||||||
| # gives unlimited permission to copy and/or distribute it,
 | # gives unlimited permission to copy and/or distribute it,
 | ||||||
| # with or without modifications, as long as this notice is preserved.
 | # with or without modifications, as long as this notice is preserved.
 | ||||||
|  | @ -16,6 +15,51 @@ | ||||||
| @SET_MAKE@ | @SET_MAKE@ | ||||||
| 
 | 
 | ||||||
| VPATH = @srcdir@ | VPATH = @srcdir@ | ||||||
|  | am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' | ||||||
|  | am__make_running_with_option = \
 | ||||||
|  |   case $${target_option-} in \
 | ||||||
|  |       ?) ;; \
 | ||||||
|  |       *) echo "am__make_running_with_option: internal error: invalid" \
 | ||||||
|  |               "target option '$${target_option-}' specified" >&2; \
 | ||||||
|  |          exit 1;; \
 | ||||||
|  |   esac; \
 | ||||||
|  |   has_opt=no; \
 | ||||||
|  |   sane_makeflags=$$MAKEFLAGS; \
 | ||||||
|  |   if $(am__is_gnu_make); then \
 | ||||||
|  |     sane_makeflags=$$MFLAGS; \
 | ||||||
|  |   else \
 | ||||||
|  |     case $$MAKEFLAGS in \
 | ||||||
|  |       *\\[\ \	]*) \
 | ||||||
|  |         bs=\\; \
 | ||||||
|  |         sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
 | ||||||
|  |           | sed "s/$$bs$$bs[$$bs $$bs	]*//g"`;; \
 | ||||||
|  |     esac; \
 | ||||||
|  |   fi; \
 | ||||||
|  |   skip_next=no; \
 | ||||||
|  |   strip_trailopt () \
 | ||||||
|  |   { \
 | ||||||
|  |     flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
 | ||||||
|  |   }; \
 | ||||||
|  |   for flg in $$sane_makeflags; do \
 | ||||||
|  |     test $$skip_next = yes && { skip_next=no; continue; }; \
 | ||||||
|  |     case $$flg in \
 | ||||||
|  |       *=*|--*) continue;; \
 | ||||||
|  |         -*I) strip_trailopt 'I'; skip_next=yes;; \
 | ||||||
|  |       -*I?*) strip_trailopt 'I';; \
 | ||||||
|  |         -*O) strip_trailopt 'O'; skip_next=yes;; \
 | ||||||
|  |       -*O?*) strip_trailopt 'O';; \
 | ||||||
|  |         -*l) strip_trailopt 'l'; skip_next=yes;; \
 | ||||||
|  |       -*l?*) strip_trailopt 'l';; \
 | ||||||
|  |       -[dEDm]) skip_next=yes;; \
 | ||||||
|  |       -[JT]) skip_next=yes;; \
 | ||||||
|  |     esac; \
 | ||||||
|  |     case $$flg in \
 | ||||||
|  |       *$$target_option*) has_opt=yes; break;; \
 | ||||||
|  |     esac; \
 | ||||||
|  |   done; \
 | ||||||
|  |   test $$has_opt = yes | ||||||
|  | am__make_dryrun = (target_option=n; $(am__make_running_with_option)) | ||||||
|  | am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) | ||||||
| pkgdatadir = $(datadir)/@PACKAGE@ | pkgdatadir = $(datadir)/@PACKAGE@ | ||||||
| pkgincludedir = $(includedir)/@PACKAGE@ | pkgincludedir = $(includedir)/@PACKAGE@ | ||||||
| pkglibdir = $(libdir)/@PACKAGE@ | pkglibdir = $(libdir)/@PACKAGE@ | ||||||
|  | @ -44,38 +88,70 @@ CONFIG_CLEAN_VPATH_FILES = | ||||||
| LIBRARIES = $(noinst_LIBRARIES) | LIBRARIES = $(noinst_LIBRARIES) | ||||||
| AR = ar | AR = ar | ||||||
| ARFLAGS = cru | ARFLAGS = cru | ||||||
| AM_V_AR = $(am__v_AR_$(V)) | AM_V_AR = $(am__v_AR_@AM_V@) | ||||||
| am__v_AR_ = $(am__v_AR_$(AM_DEFAULT_VERBOSITY)) | am__v_AR_ = $(am__v_AR_@AM_DEFAULT_V@) | ||||||
| am__v_AR_0 = @echo "  AR      " $@; | am__v_AR_0 = @echo "  AR      " $@; | ||||||
| AM_V_at = $(am__v_at_$(V)) | am__v_AR_1 =  | ||||||
| am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) |  | ||||||
| am__v_at_0 = @ |  | ||||||
| libfat_a_AR = $(AR) $(ARFLAGS) | libfat_a_AR = $(AR) $(ARFLAGS) | ||||||
| libfat_a_LIBADD = | libfat_a_LIBADD = | ||||||
| am_libfat_a_OBJECTS = libfat_a-cache.$(OBJEXT) \
 | am_libfat_a_OBJECTS = libfat_a-cache.$(OBJEXT) \
 | ||||||
| 	libfat_a-fatchain.$(OBJEXT) libfat_a-open.$(OBJEXT) \
 | 	libfat_a-fatchain.$(OBJEXT) libfat_a-open.$(OBJEXT) \
 | ||||||
| 	libfat_a-searchdir.$(OBJEXT) | 	libfat_a-searchdir.$(OBJEXT) | ||||||
| libfat_a_OBJECTS = $(am_libfat_a_OBJECTS) | libfat_a_OBJECTS = $(am_libfat_a_OBJECTS) | ||||||
|  | AM_V_P = $(am__v_P_@AM_V@) | ||||||
|  | am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) | ||||||
|  | am__v_P_0 = false | ||||||
|  | am__v_P_1 = : | ||||||
|  | AM_V_GEN = $(am__v_GEN_@AM_V@) | ||||||
|  | am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) | ||||||
|  | am__v_GEN_0 = @echo "  GEN     " $@; | ||||||
|  | am__v_GEN_1 =  | ||||||
|  | AM_V_at = $(am__v_at_@AM_V@) | ||||||
|  | am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) | ||||||
|  | am__v_at_0 = @ | ||||||
|  | am__v_at_1 =  | ||||||
| DEFAULT_INCLUDES = -I.@am__isrc@ | DEFAULT_INCLUDES = -I.@am__isrc@ | ||||||
| depcomp = | depcomp = | ||||||
| am__depfiles_maybe = | am__depfiles_maybe = | ||||||
| AM_V_lt = $(am__v_lt_$(V)) | AM_V_lt = $(am__v_lt_@AM_V@) | ||||||
| am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) | am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) | ||||||
| am__v_lt_0 = --silent | am__v_lt_0 = --silent | ||||||
|  | am__v_lt_1 =  | ||||||
| COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
 | COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
 | ||||||
| 	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) | 	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) | ||||||
| AM_V_CC = $(am__v_CC_$(V)) | AM_V_CC = $(am__v_CC_@AM_V@) | ||||||
| am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) | am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) | ||||||
| am__v_CC_0 = @echo "  CC      " $@; | am__v_CC_0 = @echo "  CC      " $@; | ||||||
|  | am__v_CC_1 =  | ||||||
| CCLD = $(CC) | CCLD = $(CC) | ||||||
| LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ | LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ | ||||||
| AM_V_CCLD = $(am__v_CCLD_$(V)) | AM_V_CCLD = $(am__v_CCLD_@AM_V@) | ||||||
| am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) | am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) | ||||||
| am__v_CCLD_0 = @echo "  CCLD    " $@; | am__v_CCLD_0 = @echo "  CCLD    " $@; | ||||||
| AM_V_GEN = $(am__v_GEN_$(V)) | am__v_CCLD_1 =  | ||||||
| am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) |  | ||||||
| am__v_GEN_0 = @echo "  GEN   " $@; |  | ||||||
| SOURCES = $(libfat_a_SOURCES) | SOURCES = $(libfat_a_SOURCES) | ||||||
|  | am__can_run_installinfo = \
 | ||||||
|  |   case $$AM_UPDATE_INFO_DIR in \
 | ||||||
|  |     n|no|NO) false;; \
 | ||||||
|  |     *) (install-info --version) >/dev/null 2>&1;; \
 | ||||||
|  |   esac | ||||||
|  | am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) | ||||||
|  | # Read a list of newline-separated strings from the standard input,
 | ||||||
|  | # and print each of them once, without duplicates.  Input order is
 | ||||||
|  | # *not* preserved.
 | ||||||
|  | am__uniquify_input = $(AWK) '\
 | ||||||
|  |   BEGIN { nonempty = 0; } \
 | ||||||
|  |   { items[$$0] = 1; nonempty = 1; } \
 | ||||||
|  |   END { if (nonempty) { for (i in items) print i; }; } \
 | ||||||
|  | ' | ||||||
|  | # Make sure the list of sources is unique.  This is necessary because,
 | ||||||
|  | # e.g., the same source file might be shared among _SOURCES variables
 | ||||||
|  | # for different programs/libraries.
 | ||||||
|  | am__define_uniq_tagged_files = \
 | ||||||
|  |   list='$(am__tagged_files)'; \
 | ||||||
|  |   unique=`for i in $$list; do \
 | ||||||
|  |     if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 | ||||||
|  |   done | $(am__uniquify_input)` | ||||||
| ETAGS = etags | ETAGS = etags | ||||||
| CTAGS = ctags | CTAGS = ctags | ||||||
| ACLOCAL = @ACLOCAL@ | ACLOCAL = @ACLOCAL@ | ||||||
|  | @ -206,7 +282,8 @@ $(am__aclocal_m4_deps): | ||||||
| 
 | 
 | ||||||
| clean-noinstLIBRARIES: | clean-noinstLIBRARIES: | ||||||
| 	-test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) | 	-test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) | ||||||
| libfat.a: $(libfat_a_OBJECTS) $(libfat_a_DEPENDENCIES)  | 
 | ||||||
|  | libfat.a: $(libfat_a_OBJECTS) $(libfat_a_DEPENDENCIES) $(EXTRA_libfat_a_DEPENDENCIES)  | ||||||
| 	$(AM_V_at)-rm -f libfat.a | 	$(AM_V_at)-rm -f libfat.a | ||||||
| 	$(AM_V_AR)$(libfat_a_AR) libfat.a $(libfat_a_OBJECTS) $(libfat_a_LIBADD) | 	$(AM_V_AR)$(libfat_a_AR) libfat.a $(libfat_a_OBJECTS) $(libfat_a_LIBADD) | ||||||
| 	$(AM_V_at)$(RANLIB) libfat.a | 	$(AM_V_at)$(RANLIB) libfat.a | ||||||
|  | @ -218,65 +295,44 @@ distclean-compile: | ||||||
| 	-rm -f *.tab.c | 	-rm -f *.tab.c | ||||||
| 
 | 
 | ||||||
| .c.o: | .c.o: | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(COMPILE) -c -o $@ $< | ||||||
| 	$(COMPILE) -c $< |  | ||||||
| 
 | 
 | ||||||
| .c.obj: | .c.obj: | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` | ||||||
| 	$(COMPILE) -c `$(CYGPATH_W) '$<'` |  | ||||||
| 
 | 
 | ||||||
| libfat_a-cache.o: cache.c | libfat_a-cache.o: cache.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libfat_a_CFLAGS) $(CFLAGS) -c -o libfat_a-cache.o `test -f 'cache.c' || echo '$(srcdir)/'`cache.c | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libfat_a_CFLAGS) $(CFLAGS) -c -o libfat_a-cache.o `test -f 'cache.c' || echo '$(srcdir)/'`cache.c |  | ||||||
| 
 | 
 | ||||||
| libfat_a-cache.obj: cache.c | libfat_a-cache.obj: cache.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libfat_a_CFLAGS) $(CFLAGS) -c -o libfat_a-cache.obj `if test -f 'cache.c'; then $(CYGPATH_W) 'cache.c'; else $(CYGPATH_W) '$(srcdir)/cache.c'; fi` | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libfat_a_CFLAGS) $(CFLAGS) -c -o libfat_a-cache.obj `if test -f 'cache.c'; then $(CYGPATH_W) 'cache.c'; else $(CYGPATH_W) '$(srcdir)/cache.c'; fi` |  | ||||||
| 
 | 
 | ||||||
| libfat_a-fatchain.o: fatchain.c | libfat_a-fatchain.o: fatchain.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libfat_a_CFLAGS) $(CFLAGS) -c -o libfat_a-fatchain.o `test -f 'fatchain.c' || echo '$(srcdir)/'`fatchain.c | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libfat_a_CFLAGS) $(CFLAGS) -c -o libfat_a-fatchain.o `test -f 'fatchain.c' || echo '$(srcdir)/'`fatchain.c |  | ||||||
| 
 | 
 | ||||||
| libfat_a-fatchain.obj: fatchain.c | libfat_a-fatchain.obj: fatchain.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libfat_a_CFLAGS) $(CFLAGS) -c -o libfat_a-fatchain.obj `if test -f 'fatchain.c'; then $(CYGPATH_W) 'fatchain.c'; else $(CYGPATH_W) '$(srcdir)/fatchain.c'; fi` | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libfat_a_CFLAGS) $(CFLAGS) -c -o libfat_a-fatchain.obj `if test -f 'fatchain.c'; then $(CYGPATH_W) 'fatchain.c'; else $(CYGPATH_W) '$(srcdir)/fatchain.c'; fi` |  | ||||||
| 
 | 
 | ||||||
| libfat_a-open.o: open.c | libfat_a-open.o: open.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libfat_a_CFLAGS) $(CFLAGS) -c -o libfat_a-open.o `test -f 'open.c' || echo '$(srcdir)/'`open.c | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libfat_a_CFLAGS) $(CFLAGS) -c -o libfat_a-open.o `test -f 'open.c' || echo '$(srcdir)/'`open.c |  | ||||||
| 
 | 
 | ||||||
| libfat_a-open.obj: open.c | libfat_a-open.obj: open.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libfat_a_CFLAGS) $(CFLAGS) -c -o libfat_a-open.obj `if test -f 'open.c'; then $(CYGPATH_W) 'open.c'; else $(CYGPATH_W) '$(srcdir)/open.c'; fi` | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libfat_a_CFLAGS) $(CFLAGS) -c -o libfat_a-open.obj `if test -f 'open.c'; then $(CYGPATH_W) 'open.c'; else $(CYGPATH_W) '$(srcdir)/open.c'; fi` |  | ||||||
| 
 | 
 | ||||||
| libfat_a-searchdir.o: searchdir.c | libfat_a-searchdir.o: searchdir.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libfat_a_CFLAGS) $(CFLAGS) -c -o libfat_a-searchdir.o `test -f 'searchdir.c' || echo '$(srcdir)/'`searchdir.c | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libfat_a_CFLAGS) $(CFLAGS) -c -o libfat_a-searchdir.o `test -f 'searchdir.c' || echo '$(srcdir)/'`searchdir.c |  | ||||||
| 
 | 
 | ||||||
| libfat_a-searchdir.obj: searchdir.c | libfat_a-searchdir.obj: searchdir.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libfat_a_CFLAGS) $(CFLAGS) -c -o libfat_a-searchdir.obj `if test -f 'searchdir.c'; then $(CYGPATH_W) 'searchdir.c'; else $(CYGPATH_W) '$(srcdir)/searchdir.c'; fi` | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libfat_a_CFLAGS) $(CFLAGS) -c -o libfat_a-searchdir.obj `if test -f 'searchdir.c'; then $(CYGPATH_W) 'searchdir.c'; else $(CYGPATH_W) '$(srcdir)/searchdir.c'; fi` |  | ||||||
| 
 | 
 | ||||||
| ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) | ID: $(am__tagged_files) | ||||||
| 	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
 | 	$(am__define_uniq_tagged_files); mkid -fID $$unique | ||||||
| 	unique=`for i in $$list; do \
 | tags: tags-am | ||||||
| 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 | TAGS: tags | ||||||
| 	  done | \
 |  | ||||||
| 	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
 |  | ||||||
| 	      END { if (nonempty) { for (i in files) print i; }; }'`; \
 |  | ||||||
| 	mkid -fID $$unique |  | ||||||
| tags: TAGS |  | ||||||
| 
 | 
 | ||||||
| TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \ | tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) | ||||||
| 		$(TAGS_FILES) $(LISP) |  | ||||||
| 	set x; \
 | 	set x; \
 | ||||||
| 	here=`pwd`; \
 | 	here=`pwd`; \
 | ||||||
| 	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 | 	$(am__define_uniq_tagged_files); \
 | ||||||
| 	unique=`for i in $$list; do \
 |  | ||||||
| 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 |  | ||||||
| 	  done | \
 |  | ||||||
| 	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
 |  | ||||||
| 	      END { if (nonempty) { for (i in files) print i; }; }'`; \
 |  | ||||||
| 	shift; \
 | 	shift; \
 | ||||||
| 	if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
 | 	if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
 | ||||||
| 	  test -n "$$unique" || unique=$$empty_fix; \
 | 	  test -n "$$unique" || unique=$$empty_fix; \
 | ||||||
|  | @ -288,15 +344,11 @@ TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \ | ||||||
| 	      $$unique; \
 | 	      $$unique; \
 | ||||||
| 	  fi; \
 | 	  fi; \
 | ||||||
| 	fi | 	fi | ||||||
| ctags: CTAGS | ctags: ctags-am | ||||||
| CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \ | 
 | ||||||
| 		$(TAGS_FILES) $(LISP) | CTAGS: ctags | ||||||
| 	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 | ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) | ||||||
| 	unique=`for i in $$list; do \
 | 	$(am__define_uniq_tagged_files); \
 | ||||||
| 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 |  | ||||||
| 	  done | \
 |  | ||||||
| 	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
 |  | ||||||
| 	      END { if (nonempty) { for (i in files) print i; }; }'`; \
 |  | ||||||
| 	test -z "$(CTAGS_ARGS)$$unique" \
 | 	test -z "$(CTAGS_ARGS)$$unique" \
 | ||||||
| 	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
 | 	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
 | ||||||
| 	     $$unique | 	     $$unique | ||||||
|  | @ -305,6 +357,21 @@ GTAGS: | ||||||
| 	here=`$(am__cd) $(top_builddir) && pwd` \
 | 	here=`$(am__cd) $(top_builddir) && pwd` \
 | ||||||
| 	  && $(am__cd) $(top_srcdir) \
 | 	  && $(am__cd) $(top_srcdir) \
 | ||||||
| 	  && gtags -i $(GTAGS_ARGS) "$$here" | 	  && gtags -i $(GTAGS_ARGS) "$$here" | ||||||
|  | cscopelist: cscopelist-am | ||||||
|  | 
 | ||||||
|  | cscopelist-am: $(am__tagged_files) | ||||||
|  | 	list='$(am__tagged_files)'; \
 | ||||||
|  | 	case "$(srcdir)" in \
 | ||||||
|  | 	  [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
 | ||||||
|  | 	  *) sdir=$(subdir)/$(srcdir) ;; \
 | ||||||
|  | 	esac; \
 | ||||||
|  | 	for i in $$list; do \
 | ||||||
|  | 	  if test -f "$$i"; then \
 | ||||||
|  | 	    echo "$(subdir)/$$i"; \
 | ||||||
|  | 	  else \
 | ||||||
|  | 	    echo "$$sdir/$$i"; \
 | ||||||
|  | 	  fi; \
 | ||||||
|  | 	done >> $(top_builddir)/cscope.files | ||||||
| 
 | 
 | ||||||
| distclean-tags: | distclean-tags: | ||||||
| 	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags | 	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags | ||||||
|  | @ -322,10 +389,15 @@ install-am: all-am | ||||||
| 
 | 
 | ||||||
| installcheck: installcheck-am | installcheck: installcheck-am | ||||||
| install-strip: | install-strip: | ||||||
|  | 	if test -z '$(STRIP)'; then \
 | ||||||
| 	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 | 	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 | ||||||
| 	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 | 	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 | ||||||
| 	  `test -z '$(STRIP)' || \
 | 	      install; \
 | ||||||
| 	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install | 	else \
 | ||||||
|  | 	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 | ||||||
|  | 	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 | ||||||
|  | 	    "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
 | ||||||
|  | 	fi | ||||||
| mostlyclean-generic: | mostlyclean-generic: | ||||||
| 
 | 
 | ||||||
| clean-generic: | clean-generic: | ||||||
|  | @ -406,17 +478,18 @@ uninstall-am: | ||||||
| 
 | 
 | ||||||
| .MAKE: install-am install-strip | .MAKE: install-am install-strip | ||||||
| 
 | 
 | ||||||
| .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ | .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ | ||||||
| 	clean-noinstLIBRARIES ctags distclean distclean-compile \
 | 	clean-noinstLIBRARIES cscopelist-am ctags ctags-am distclean \
 | ||||||
| 	distclean-generic distclean-tags dvi dvi-am html html-am info \
 | 	distclean-compile distclean-generic distclean-tags dvi dvi-am \
 | ||||||
| 	info-am install install-am install-data install-data-am \
 | 	html html-am info info-am install install-am install-data \
 | ||||||
| 	install-dvi install-dvi-am install-exec install-exec-am \
 | 	install-data-am install-dvi install-dvi-am install-exec \
 | ||||||
| 	install-html install-html-am install-info install-info-am \
 | 	install-exec-am install-html install-html-am install-info \
 | ||||||
| 	install-man install-pdf install-pdf-am install-ps \
 | 	install-info-am install-man install-pdf install-pdf-am \
 | ||||||
| 	install-ps-am install-strip installcheck installcheck-am \
 | 	install-ps install-ps-am install-strip installcheck \
 | ||||||
| 	installdirs maintainer-clean maintainer-clean-generic \
 | 	installcheck-am installdirs maintainer-clean \
 | ||||||
| 	mostlyclean mostlyclean-compile mostlyclean-generic pdf pdf-am \
 | 	maintainer-clean-generic mostlyclean mostlyclean-compile \
 | ||||||
| 	ps ps-am tags uninstall uninstall-am | 	mostlyclean-generic pdf pdf-am ps ps-am tags tags-am uninstall \
 | ||||||
|  | 	uninstall-am | ||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
| # Tell versions [3.59,3.63) of GNU make to not export all variables.
 | # Tell versions [3.59,3.63) of GNU make to not export all variables.
 | ||||||
|  |  | ||||||
|  | @ -1,9 +1,8 @@ | ||||||
| # Makefile.in generated by automake 1.11.1 from Makefile.am.
 | # Makefile.in generated by automake 1.14.1 from Makefile.am.
 | ||||||
| # @configure_input@
 | # @configure_input@
 | ||||||
| 
 | 
 | ||||||
| # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
 | # Copyright (C) 1994-2013 Free Software Foundation, Inc.
 | ||||||
| # 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
 | 
 | ||||||
| # Inc.
 |  | ||||||
| # This Makefile.in is free software; the Free Software Foundation
 | # This Makefile.in is free software; the Free Software Foundation
 | ||||||
| # gives unlimited permission to copy and/or distribute it,
 | # gives unlimited permission to copy and/or distribute it,
 | ||||||
| # with or without modifications, as long as this notice is preserved.
 | # with or without modifications, as long as this notice is preserved.
 | ||||||
|  | @ -16,6 +15,51 @@ | ||||||
| @SET_MAKE@ | @SET_MAKE@ | ||||||
| 
 | 
 | ||||||
| VPATH = @srcdir@ | VPATH = @srcdir@ | ||||||
|  | am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' | ||||||
|  | am__make_running_with_option = \
 | ||||||
|  |   case $${target_option-} in \
 | ||||||
|  |       ?) ;; \
 | ||||||
|  |       *) echo "am__make_running_with_option: internal error: invalid" \
 | ||||||
|  |               "target option '$${target_option-}' specified" >&2; \
 | ||||||
|  |          exit 1;; \
 | ||||||
|  |   esac; \
 | ||||||
|  |   has_opt=no; \
 | ||||||
|  |   sane_makeflags=$$MAKEFLAGS; \
 | ||||||
|  |   if $(am__is_gnu_make); then \
 | ||||||
|  |     sane_makeflags=$$MFLAGS; \
 | ||||||
|  |   else \
 | ||||||
|  |     case $$MAKEFLAGS in \
 | ||||||
|  |       *\\[\ \	]*) \
 | ||||||
|  |         bs=\\; \
 | ||||||
|  |         sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
 | ||||||
|  |           | sed "s/$$bs$$bs[$$bs $$bs	]*//g"`;; \
 | ||||||
|  |     esac; \
 | ||||||
|  |   fi; \
 | ||||||
|  |   skip_next=no; \
 | ||||||
|  |   strip_trailopt () \
 | ||||||
|  |   { \
 | ||||||
|  |     flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
 | ||||||
|  |   }; \
 | ||||||
|  |   for flg in $$sane_makeflags; do \
 | ||||||
|  |     test $$skip_next = yes && { skip_next=no; continue; }; \
 | ||||||
|  |     case $$flg in \
 | ||||||
|  |       *=*|--*) continue;; \
 | ||||||
|  |         -*I) strip_trailopt 'I'; skip_next=yes;; \
 | ||||||
|  |       -*I?*) strip_trailopt 'I';; \
 | ||||||
|  |         -*O) strip_trailopt 'O'; skip_next=yes;; \
 | ||||||
|  |       -*O?*) strip_trailopt 'O';; \
 | ||||||
|  |         -*l) strip_trailopt 'l'; skip_next=yes;; \
 | ||||||
|  |       -*l?*) strip_trailopt 'l';; \
 | ||||||
|  |       -[dEDm]) skip_next=yes;; \
 | ||||||
|  |       -[JT]) skip_next=yes;; \
 | ||||||
|  |     esac; \
 | ||||||
|  |     case $$flg in \
 | ||||||
|  |       *$$target_option*) has_opt=yes; break;; \
 | ||||||
|  |     esac; \
 | ||||||
|  |   done; \
 | ||||||
|  |   test $$has_opt = yes | ||||||
|  | am__make_dryrun = (target_option=n; $(am__make_running_with_option)) | ||||||
|  | am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) | ||||||
| pkgdatadir = $(datadir)/@PACKAGE@ | pkgdatadir = $(datadir)/@PACKAGE@ | ||||||
| pkgincludedir = $(includedir)/@PACKAGE@ | pkgincludedir = $(includedir)/@PACKAGE@ | ||||||
| pkglibdir = $(libdir)/@PACKAGE@ | pkglibdir = $(libdir)/@PACKAGE@ | ||||||
|  | @ -44,12 +88,10 @@ CONFIG_CLEAN_VPATH_FILES = | ||||||
| LIBRARIES = $(noinst_LIBRARIES) | LIBRARIES = $(noinst_LIBRARIES) | ||||||
| AR = ar | AR = ar | ||||||
| ARFLAGS = cru | ARFLAGS = cru | ||||||
| AM_V_AR = $(am__v_AR_$(V)) | AM_V_AR = $(am__v_AR_@AM_V@) | ||||||
| am__v_AR_ = $(am__v_AR_$(AM_DEFAULT_VERBOSITY)) | am__v_AR_ = $(am__v_AR_@AM_DEFAULT_V@) | ||||||
| am__v_AR_0 = @echo "  AR      " $@; | am__v_AR_0 = @echo "  AR      " $@; | ||||||
| AM_V_at = $(am__v_at_$(V)) | am__v_AR_1 =  | ||||||
| am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) |  | ||||||
| am__v_at_0 = @ |  | ||||||
| libinstaller_a_AR = $(AR) $(ARFLAGS) | libinstaller_a_AR = $(AR) $(ARFLAGS) | ||||||
| libinstaller_a_LIBADD = | libinstaller_a_LIBADD = | ||||||
| am_libinstaller_a_OBJECTS = libinstaller_a-fs.$(OBJEXT) \
 | am_libinstaller_a_OBJECTS = libinstaller_a-fs.$(OBJEXT) \
 | ||||||
|  | @ -57,26 +99,60 @@ am_libinstaller_a_OBJECTS = libinstaller_a-fs.$(OBJEXT) \ | ||||||
| 	libinstaller_a-setadv.$(OBJEXT) \
 | 	libinstaller_a-setadv.$(OBJEXT) \
 | ||||||
| 	libinstaller_a-syslxmod.$(OBJEXT) | 	libinstaller_a-syslxmod.$(OBJEXT) | ||||||
| libinstaller_a_OBJECTS = $(am_libinstaller_a_OBJECTS) | libinstaller_a_OBJECTS = $(am_libinstaller_a_OBJECTS) | ||||||
|  | AM_V_P = $(am__v_P_@AM_V@) | ||||||
|  | am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) | ||||||
|  | am__v_P_0 = false | ||||||
|  | am__v_P_1 = : | ||||||
|  | AM_V_GEN = $(am__v_GEN_@AM_V@) | ||||||
|  | am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) | ||||||
|  | am__v_GEN_0 = @echo "  GEN     " $@; | ||||||
|  | am__v_GEN_1 =  | ||||||
|  | AM_V_at = $(am__v_at_@AM_V@) | ||||||
|  | am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) | ||||||
|  | am__v_at_0 = @ | ||||||
|  | am__v_at_1 =  | ||||||
| DEFAULT_INCLUDES = -I.@am__isrc@ | DEFAULT_INCLUDES = -I.@am__isrc@ | ||||||
| depcomp = | depcomp = | ||||||
| am__depfiles_maybe = | am__depfiles_maybe = | ||||||
| AM_V_lt = $(am__v_lt_$(V)) | AM_V_lt = $(am__v_lt_@AM_V@) | ||||||
| am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) | am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) | ||||||
| am__v_lt_0 = --silent | am__v_lt_0 = --silent | ||||||
|  | am__v_lt_1 =  | ||||||
| COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
 | COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
 | ||||||
| 	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) | 	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) | ||||||
| AM_V_CC = $(am__v_CC_$(V)) | AM_V_CC = $(am__v_CC_@AM_V@) | ||||||
| am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) | am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) | ||||||
| am__v_CC_0 = @echo "  CC      " $@; | am__v_CC_0 = @echo "  CC      " $@; | ||||||
|  | am__v_CC_1 =  | ||||||
| CCLD = $(CC) | CCLD = $(CC) | ||||||
| LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ | LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ | ||||||
| AM_V_CCLD = $(am__v_CCLD_$(V)) | AM_V_CCLD = $(am__v_CCLD_@AM_V@) | ||||||
| am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) | am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) | ||||||
| am__v_CCLD_0 = @echo "  CCLD    " $@; | am__v_CCLD_0 = @echo "  CCLD    " $@; | ||||||
| AM_V_GEN = $(am__v_GEN_$(V)) | am__v_CCLD_1 =  | ||||||
| am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) |  | ||||||
| am__v_GEN_0 = @echo "  GEN   " $@; |  | ||||||
| SOURCES = $(libinstaller_a_SOURCES) | SOURCES = $(libinstaller_a_SOURCES) | ||||||
|  | am__can_run_installinfo = \
 | ||||||
|  |   case $$AM_UPDATE_INFO_DIR in \
 | ||||||
|  |     n|no|NO) false;; \
 | ||||||
|  |     *) (install-info --version) >/dev/null 2>&1;; \
 | ||||||
|  |   esac | ||||||
|  | am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) | ||||||
|  | # Read a list of newline-separated strings from the standard input,
 | ||||||
|  | # and print each of them once, without duplicates.  Input order is
 | ||||||
|  | # *not* preserved.
 | ||||||
|  | am__uniquify_input = $(AWK) '\
 | ||||||
|  |   BEGIN { nonempty = 0; } \
 | ||||||
|  |   { items[$$0] = 1; nonempty = 1; } \
 | ||||||
|  |   END { if (nonempty) { for (i in items) print i; }; } \
 | ||||||
|  | ' | ||||||
|  | # Make sure the list of sources is unique.  This is necessary because,
 | ||||||
|  | # e.g., the same source file might be shared among _SOURCES variables
 | ||||||
|  | # for different programs/libraries.
 | ||||||
|  | am__define_uniq_tagged_files = \
 | ||||||
|  |   list='$(am__tagged_files)'; \
 | ||||||
|  |   unique=`for i in $$list; do \
 | ||||||
|  |     if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 | ||||||
|  |   done | $(am__uniquify_input)` | ||||||
| ETAGS = etags | ETAGS = etags | ||||||
| CTAGS = ctags | CTAGS = ctags | ||||||
| ACLOCAL = @ACLOCAL@ | ACLOCAL = @ACLOCAL@ | ||||||
|  | @ -207,7 +283,8 @@ $(am__aclocal_m4_deps): | ||||||
| 
 | 
 | ||||||
| clean-noinstLIBRARIES: | clean-noinstLIBRARIES: | ||||||
| 	-test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) | 	-test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) | ||||||
| libinstaller.a: $(libinstaller_a_OBJECTS) $(libinstaller_a_DEPENDENCIES)  | 
 | ||||||
|  | libinstaller.a: $(libinstaller_a_OBJECTS) $(libinstaller_a_DEPENDENCIES) $(EXTRA_libinstaller_a_DEPENDENCIES)  | ||||||
| 	$(AM_V_at)-rm -f libinstaller.a | 	$(AM_V_at)-rm -f libinstaller.a | ||||||
| 	$(AM_V_AR)$(libinstaller_a_AR) libinstaller.a $(libinstaller_a_OBJECTS) $(libinstaller_a_LIBADD) | 	$(AM_V_AR)$(libinstaller_a_AR) libinstaller.a $(libinstaller_a_OBJECTS) $(libinstaller_a_LIBADD) | ||||||
| 	$(AM_V_at)$(RANLIB) libinstaller.a | 	$(AM_V_at)$(RANLIB) libinstaller.a | ||||||
|  | @ -219,65 +296,44 @@ distclean-compile: | ||||||
| 	-rm -f *.tab.c | 	-rm -f *.tab.c | ||||||
| 
 | 
 | ||||||
| .c.o: | .c.o: | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(COMPILE) -c -o $@ $< | ||||||
| 	$(COMPILE) -c $< |  | ||||||
| 
 | 
 | ||||||
| .c.obj: | .c.obj: | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` | ||||||
| 	$(COMPILE) -c `$(CYGPATH_W) '$<'` |  | ||||||
| 
 | 
 | ||||||
| libinstaller_a-fs.o: fs.c | libinstaller_a-fs.o: fs.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libinstaller_a_CFLAGS) $(CFLAGS) -c -o libinstaller_a-fs.o `test -f 'fs.c' || echo '$(srcdir)/'`fs.c | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libinstaller_a_CFLAGS) $(CFLAGS) -c -o libinstaller_a-fs.o `test -f 'fs.c' || echo '$(srcdir)/'`fs.c |  | ||||||
| 
 | 
 | ||||||
| libinstaller_a-fs.obj: fs.c | libinstaller_a-fs.obj: fs.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libinstaller_a_CFLAGS) $(CFLAGS) -c -o libinstaller_a-fs.obj `if test -f 'fs.c'; then $(CYGPATH_W) 'fs.c'; else $(CYGPATH_W) '$(srcdir)/fs.c'; fi` | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libinstaller_a_CFLAGS) $(CFLAGS) -c -o libinstaller_a-fs.obj `if test -f 'fs.c'; then $(CYGPATH_W) 'fs.c'; else $(CYGPATH_W) '$(srcdir)/fs.c'; fi` |  | ||||||
| 
 | 
 | ||||||
| libinstaller_a-ntfssect.o: ntfssect.c | libinstaller_a-ntfssect.o: ntfssect.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libinstaller_a_CFLAGS) $(CFLAGS) -c -o libinstaller_a-ntfssect.o `test -f 'ntfssect.c' || echo '$(srcdir)/'`ntfssect.c | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libinstaller_a_CFLAGS) $(CFLAGS) -c -o libinstaller_a-ntfssect.o `test -f 'ntfssect.c' || echo '$(srcdir)/'`ntfssect.c |  | ||||||
| 
 | 
 | ||||||
| libinstaller_a-ntfssect.obj: ntfssect.c | libinstaller_a-ntfssect.obj: ntfssect.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libinstaller_a_CFLAGS) $(CFLAGS) -c -o libinstaller_a-ntfssect.obj `if test -f 'ntfssect.c'; then $(CYGPATH_W) 'ntfssect.c'; else $(CYGPATH_W) '$(srcdir)/ntfssect.c'; fi` | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libinstaller_a_CFLAGS) $(CFLAGS) -c -o libinstaller_a-ntfssect.obj `if test -f 'ntfssect.c'; then $(CYGPATH_W) 'ntfssect.c'; else $(CYGPATH_W) '$(srcdir)/ntfssect.c'; fi` |  | ||||||
| 
 | 
 | ||||||
| libinstaller_a-setadv.o: setadv.c | libinstaller_a-setadv.o: setadv.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libinstaller_a_CFLAGS) $(CFLAGS) -c -o libinstaller_a-setadv.o `test -f 'setadv.c' || echo '$(srcdir)/'`setadv.c | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libinstaller_a_CFLAGS) $(CFLAGS) -c -o libinstaller_a-setadv.o `test -f 'setadv.c' || echo '$(srcdir)/'`setadv.c |  | ||||||
| 
 | 
 | ||||||
| libinstaller_a-setadv.obj: setadv.c | libinstaller_a-setadv.obj: setadv.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libinstaller_a_CFLAGS) $(CFLAGS) -c -o libinstaller_a-setadv.obj `if test -f 'setadv.c'; then $(CYGPATH_W) 'setadv.c'; else $(CYGPATH_W) '$(srcdir)/setadv.c'; fi` | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libinstaller_a_CFLAGS) $(CFLAGS) -c -o libinstaller_a-setadv.obj `if test -f 'setadv.c'; then $(CYGPATH_W) 'setadv.c'; else $(CYGPATH_W) '$(srcdir)/setadv.c'; fi` |  | ||||||
| 
 | 
 | ||||||
| libinstaller_a-syslxmod.o: syslxmod.c | libinstaller_a-syslxmod.o: syslxmod.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libinstaller_a_CFLAGS) $(CFLAGS) -c -o libinstaller_a-syslxmod.o `test -f 'syslxmod.c' || echo '$(srcdir)/'`syslxmod.c | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libinstaller_a_CFLAGS) $(CFLAGS) -c -o libinstaller_a-syslxmod.o `test -f 'syslxmod.c' || echo '$(srcdir)/'`syslxmod.c |  | ||||||
| 
 | 
 | ||||||
| libinstaller_a-syslxmod.obj: syslxmod.c | libinstaller_a-syslxmod.obj: syslxmod.c | ||||||
| 	$(AM_V_CC) @AM_BACKSLASH@ | 	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libinstaller_a_CFLAGS) $(CFLAGS) -c -o libinstaller_a-syslxmod.obj `if test -f 'syslxmod.c'; then $(CYGPATH_W) 'syslxmod.c'; else $(CYGPATH_W) '$(srcdir)/syslxmod.c'; fi` | ||||||
| 	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libinstaller_a_CFLAGS) $(CFLAGS) -c -o libinstaller_a-syslxmod.obj `if test -f 'syslxmod.c'; then $(CYGPATH_W) 'syslxmod.c'; else $(CYGPATH_W) '$(srcdir)/syslxmod.c'; fi` |  | ||||||
| 
 | 
 | ||||||
| ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) | ID: $(am__tagged_files) | ||||||
| 	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
 | 	$(am__define_uniq_tagged_files); mkid -fID $$unique | ||||||
| 	unique=`for i in $$list; do \
 | tags: tags-am | ||||||
| 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 | TAGS: tags | ||||||
| 	  done | \
 |  | ||||||
| 	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
 |  | ||||||
| 	      END { if (nonempty) { for (i in files) print i; }; }'`; \
 |  | ||||||
| 	mkid -fID $$unique |  | ||||||
| tags: TAGS |  | ||||||
| 
 | 
 | ||||||
| TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \ | tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) | ||||||
| 		$(TAGS_FILES) $(LISP) |  | ||||||
| 	set x; \
 | 	set x; \
 | ||||||
| 	here=`pwd`; \
 | 	here=`pwd`; \
 | ||||||
| 	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 | 	$(am__define_uniq_tagged_files); \
 | ||||||
| 	unique=`for i in $$list; do \
 |  | ||||||
| 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 |  | ||||||
| 	  done | \
 |  | ||||||
| 	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
 |  | ||||||
| 	      END { if (nonempty) { for (i in files) print i; }; }'`; \
 |  | ||||||
| 	shift; \
 | 	shift; \
 | ||||||
| 	if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
 | 	if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
 | ||||||
| 	  test -n "$$unique" || unique=$$empty_fix; \
 | 	  test -n "$$unique" || unique=$$empty_fix; \
 | ||||||
|  | @ -289,15 +345,11 @@ TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \ | ||||||
| 	      $$unique; \
 | 	      $$unique; \
 | ||||||
| 	  fi; \
 | 	  fi; \
 | ||||||
| 	fi | 	fi | ||||||
| ctags: CTAGS | ctags: ctags-am | ||||||
| CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \ | 
 | ||||||
| 		$(TAGS_FILES) $(LISP) | CTAGS: ctags | ||||||
| 	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 | ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) | ||||||
| 	unique=`for i in $$list; do \
 | 	$(am__define_uniq_tagged_files); \
 | ||||||
| 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 |  | ||||||
| 	  done | \
 |  | ||||||
| 	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
 |  | ||||||
| 	      END { if (nonempty) { for (i in files) print i; }; }'`; \
 |  | ||||||
| 	test -z "$(CTAGS_ARGS)$$unique" \
 | 	test -z "$(CTAGS_ARGS)$$unique" \
 | ||||||
| 	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
 | 	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
 | ||||||
| 	     $$unique | 	     $$unique | ||||||
|  | @ -306,6 +358,21 @@ GTAGS: | ||||||
| 	here=`$(am__cd) $(top_builddir) && pwd` \
 | 	here=`$(am__cd) $(top_builddir) && pwd` \
 | ||||||
| 	  && $(am__cd) $(top_srcdir) \
 | 	  && $(am__cd) $(top_srcdir) \
 | ||||||
| 	  && gtags -i $(GTAGS_ARGS) "$$here" | 	  && gtags -i $(GTAGS_ARGS) "$$here" | ||||||
|  | cscopelist: cscopelist-am | ||||||
|  | 
 | ||||||
|  | cscopelist-am: $(am__tagged_files) | ||||||
|  | 	list='$(am__tagged_files)'; \
 | ||||||
|  | 	case "$(srcdir)" in \
 | ||||||
|  | 	  [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
 | ||||||
|  | 	  *) sdir=$(subdir)/$(srcdir) ;; \
 | ||||||
|  | 	esac; \
 | ||||||
|  | 	for i in $$list; do \
 | ||||||
|  | 	  if test -f "$$i"; then \
 | ||||||
|  | 	    echo "$(subdir)/$$i"; \
 | ||||||
|  | 	  else \
 | ||||||
|  | 	    echo "$$sdir/$$i"; \
 | ||||||
|  | 	  fi; \
 | ||||||
|  | 	done >> $(top_builddir)/cscope.files | ||||||
| 
 | 
 | ||||||
| distclean-tags: | distclean-tags: | ||||||
| 	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags | 	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags | ||||||
|  | @ -323,10 +390,15 @@ install-am: all-am | ||||||
| 
 | 
 | ||||||
| installcheck: installcheck-am | installcheck: installcheck-am | ||||||
| install-strip: | install-strip: | ||||||
|  | 	if test -z '$(STRIP)'; then \
 | ||||||
| 	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 | 	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 | ||||||
| 	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 | 	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 | ||||||
| 	  `test -z '$(STRIP)' || \
 | 	      install; \
 | ||||||
| 	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install | 	else \
 | ||||||
|  | 	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 | ||||||
|  | 	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 | ||||||
|  | 	    "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
 | ||||||
|  | 	fi | ||||||
| mostlyclean-generic: | mostlyclean-generic: | ||||||
| 
 | 
 | ||||||
| clean-generic: | clean-generic: | ||||||
|  | @ -407,17 +479,18 @@ uninstall-am: | ||||||
| 
 | 
 | ||||||
| .MAKE: install-am install-strip | .MAKE: install-am install-strip | ||||||
| 
 | 
 | ||||||
| .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ | .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ | ||||||
| 	clean-noinstLIBRARIES ctags distclean distclean-compile \
 | 	clean-noinstLIBRARIES cscopelist-am ctags ctags-am distclean \
 | ||||||
| 	distclean-generic distclean-tags dvi dvi-am html html-am info \
 | 	distclean-compile distclean-generic distclean-tags dvi dvi-am \
 | ||||||
| 	info-am install install-am install-data install-data-am \
 | 	html html-am info info-am install install-am install-data \
 | ||||||
| 	install-dvi install-dvi-am install-exec install-exec-am \
 | 	install-data-am install-dvi install-dvi-am install-exec \
 | ||||||
| 	install-html install-html-am install-info install-info-am \
 | 	install-exec-am install-html install-html-am install-info \
 | ||||||
| 	install-man install-pdf install-pdf-am install-ps \
 | 	install-info-am install-man install-pdf install-pdf-am \
 | ||||||
| 	install-ps-am install-strip installcheck installcheck-am \
 | 	install-ps install-ps-am install-strip installcheck \
 | ||||||
| 	installdirs maintainer-clean maintainer-clean-generic \
 | 	installcheck-am installdirs maintainer-clean \
 | ||||||
| 	mostlyclean mostlyclean-compile mostlyclean-generic pdf pdf-am \
 | 	maintainer-clean-generic mostlyclean mostlyclean-compile \
 | ||||||
| 	ps ps-am tags uninstall uninstall-am | 	mostlyclean-generic pdf pdf-am ps ps-am tags tags-am uninstall \
 | ||||||
|  | 	uninstall-am | ||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
| # Tell versions [3.59,3.63) of GNU make to not export all variables.
 | # Tell versions [3.59,3.63) of GNU make to not export all variables.
 | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue