@@ -1,5 +1,14 @@ | |||||
History of Nife releases : | History of Nife releases : | ||||
2022-01-04 - Nife 0.61 is released. | |||||
* Added a definition of HUGE for compilers that no longer have it in | |||||
math.h. Thanks to Jacques Godfrain Kounkou for his bug report ! | |||||
* Added some "include" where it was missing. | |||||
2019-01-27 - Nife 0.60 is released. | |||||
* Updated headers to show that the project is still alive ! | |||||
* The Nife official site is now : https://www.seriane.org/nife/ | |||||
2016-08-15 - Nife 0.59 is released. | 2016-08-15 - Nife 0.59 is released. | ||||
* Add implementation of data meta-stacks tools for context swapping : | * Add implementation of data meta-stacks tools for context swapping : | ||||
[ and ] for respectively increment and decrement the numerical stack, | [ and ] for respectively increment and decrement the numerical stack, | ||||
@@ -1,9 +1,8 @@ | |||||
# Makefile.in generated by automake 1.11.6 from Makefile.am. | |||||
# Makefile.in generated by automake 1.16.1 from Makefile.am. | |||||
# @configure_input@ | # @configure_input@ | ||||
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, | |||||
# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software | |||||
# Foundation, Inc. | |||||
# Copyright (C) 1994-2018 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. | ||||
@@ -19,23 +18,61 @@ | |||||
# Makefile.am for nife project : upper directory # | # Makefile.am for nife project : upper directory # | ||||
################################################## | ################################################## | ||||
VPATH = @srcdir@ | VPATH = @srcdir@ | ||||
am__make_dryrun = \ | |||||
{ \ | |||||
am__dry=no; \ | |||||
am__is_gnu_make = { \ | |||||
if test -z '$(MAKELEVEL)'; then \ | |||||
false; \ | |||||
elif test -n '$(MAKE_HOST)'; then \ | |||||
true; \ | |||||
elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ | |||||
true; \ | |||||
else \ | |||||
false; \ | |||||
fi; \ | |||||
} | |||||
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 \ | case $$MAKEFLAGS in \ | ||||
*\\[\ \ ]*) \ | *\\[\ \ ]*) \ | ||||
echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ | |||||
| grep '^AM OK$$' >/dev/null || am__dry=yes;; \ | |||||
*) \ | |||||
for am__flg in $$MAKEFLAGS; do \ | |||||
case $$am__flg in \ | |||||
*=*|--*) ;; \ | |||||
*n*) am__dry=yes; break;; \ | |||||
esac; \ | |||||
done;; \ | |||||
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; \ | esac; \ | ||||
test $$am__dry = yes; \ | |||||
} | |||||
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@ | ||||
@@ -53,29 +90,40 @@ NORMAL_UNINSTALL = : | |||||
PRE_UNINSTALL = : | PRE_UNINSTALL = : | ||||
POST_UNINSTALL = : | POST_UNINSTALL = : | ||||
subdir = . | subdir = . | ||||
DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \ | |||||
$(srcdir)/Makefile.in $(srcdir)/config.h.in \ | |||||
$(top_srcdir)/configure AUTHORS COPYING ChangeLog INSTALL NEWS \ | |||||
depcomp install-sh missing | |||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | ||||
am__aclocal_m4_deps = $(top_srcdir)/configure.ac | am__aclocal_m4_deps = $(top_srcdir)/configure.ac | ||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ | am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ | ||||
$(ACLOCAL_M4) | $(ACLOCAL_M4) | ||||
DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \ | |||||
$(am__configure_deps) $(am__DIST_COMMON) | |||||
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ | am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ | ||||
configure.lineno config.status.lineno | configure.lineno config.status.lineno | ||||
mkinstalldirs = $(install_sh) -d | mkinstalldirs = $(install_sh) -d | ||||
CONFIG_HEADER = config.h | CONFIG_HEADER = config.h | ||||
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 = | |||||
SOURCES = | SOURCES = | ||||
DIST_SOURCES = | DIST_SOURCES = | ||||
RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ | |||||
html-recursive info-recursive install-data-recursive \ | |||||
install-dvi-recursive install-exec-recursive \ | |||||
install-html-recursive install-info-recursive \ | |||||
install-pdf-recursive install-ps-recursive install-recursive \ | |||||
installcheck-recursive installdirs-recursive pdf-recursive \ | |||||
ps-recursive uninstall-recursive | |||||
RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ | |||||
ctags-recursive dvi-recursive html-recursive info-recursive \ | |||||
install-data-recursive install-dvi-recursive \ | |||||
install-exec-recursive install-html-recursive \ | |||||
install-info-recursive install-pdf-recursive \ | |||||
install-ps-recursive install-recursive installcheck-recursive \ | |||||
installdirs-recursive pdf-recursive ps-recursive \ | |||||
tags-recursive uninstall-recursive | |||||
am__can_run_installinfo = \ | am__can_run_installinfo = \ | ||||
case $$AM_UPDATE_INFO_DIR in \ | case $$AM_UPDATE_INFO_DIR in \ | ||||
n|no|NO) false;; \ | n|no|NO) false;; \ | ||||
@@ -83,12 +131,37 @@ am__can_run_installinfo = \ | |||||
esac | 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=) \ | |||||
$(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ | |||||
distdir dist dist-all distcheck | |||||
am__recursive_targets = \ | |||||
$(RECURSIVE_TARGETS) \ | |||||
$(RECURSIVE_CLEAN_TARGETS) \ | |||||
$(am__extra_recursive_targets) | |||||
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ | |||||
cscope distdir distdir-am dist dist-all distcheck | |||||
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \ | |||||
$(LISP)config.h.in | |||||
# 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) | ||||
am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/config.h.in AUTHORS \ | |||||
COPYING ChangeLog INSTALL NEWS README compile depcomp \ | |||||
install-sh missing | |||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) | DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) | ||||
distdir = $(PACKAGE)-$(VERSION) | distdir = $(PACKAGE)-$(VERSION) | ||||
top_distdir = $(distdir) | top_distdir = $(distdir) | ||||
@@ -98,6 +171,7 @@ am__remove_distdir = \ | |||||
&& rm -rf "$(distdir)" \ | && rm -rf "$(distdir)" \ | ||||
|| { sleep 5 && rm -rf "$(distdir)"; }; \ | || { sleep 5 && rm -rf "$(distdir)"; }; \ | ||||
else :; fi | else :; fi | ||||
am__post_remove_distdir = $(am__remove_distdir) | |||||
am__relativize = \ | am__relativize = \ | ||||
dir0=`pwd`; \ | dir0=`pwd`; \ | ||||
sed_first='s,^\([^/]*\)/.*$$,\1,'; \ | sed_first='s,^\([^/]*\)/.*$$,\1,'; \ | ||||
@@ -125,12 +199,14 @@ am__relativize = \ | |||||
reldir="$$dir2" | reldir="$$dir2" | ||||
DIST_ARCHIVES = $(distdir).tar.gz | DIST_ARCHIVES = $(distdir).tar.gz | ||||
GZIP_ENV = --best | GZIP_ENV = --best | ||||
DIST_TARGETS = dist-gzip | |||||
distuninstallcheck_listfiles = find . -type f -print | distuninstallcheck_listfiles = find . -type f -print | ||||
am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \ | am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \ | ||||
| sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$' | | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$' | ||||
distcleancheck_listfiles = find . -type f -print | distcleancheck_listfiles = find . -type f -print | ||||
ACLOCAL = @ACLOCAL@ | ACLOCAL = @ACLOCAL@ | ||||
AMTAR = @AMTAR@ | AMTAR = @AMTAR@ | ||||
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ | |||||
AUTOCONF = @AUTOCONF@ | AUTOCONF = @AUTOCONF@ | ||||
AUTOHEADER = @AUTOHEADER@ | AUTOHEADER = @AUTOHEADER@ | ||||
AUTOMAKE = @AUTOMAKE@ | AUTOMAKE = @AUTOMAKE@ | ||||
@@ -208,6 +284,7 @@ pdfdir = @pdfdir@ | |||||
prefix = @prefix@ | prefix = @prefix@ | ||||
program_transform_name = @program_transform_name@ | program_transform_name = @program_transform_name@ | ||||
psdir = @psdir@ | psdir = @psdir@ | ||||
runstatedir = @runstatedir@ | |||||
sbindir = @sbindir@ | sbindir = @sbindir@ | ||||
sharedstatedir = @sharedstatedir@ | sharedstatedir = @sharedstatedir@ | ||||
srcdir = @srcdir@ | srcdir = @srcdir@ | ||||
@@ -237,15 +314,14 @@ $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) | |||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \ | echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \ | ||||
$(am__cd) $(top_srcdir) && \ | $(am__cd) $(top_srcdir) && \ | ||||
$(AUTOMAKE) --gnu Makefile | $(AUTOMAKE) --gnu Makefile | ||||
.PRECIOUS: Makefile | |||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status | Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status | ||||
@case '$?' in \ | @case '$?' in \ | ||||
*config.status*) \ | *config.status*) \ | ||||
echo ' $(SHELL) ./config.status'; \ | echo ' $(SHELL) ./config.status'; \ | ||||
$(SHELL) ./config.status;; \ | $(SHELL) ./config.status;; \ | ||||
*) \ | *) \ | ||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ | |||||
cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ | |||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles)'; \ | |||||
cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles);; \ | |||||
esac; | esac; | ||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) | $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) | ||||
@@ -258,8 +334,8 @@ $(ACLOCAL_M4): $(am__aclocal_m4_deps) | |||||
$(am__aclocal_m4_deps): | $(am__aclocal_m4_deps): | ||||
config.h: stamp-h1 | config.h: stamp-h1 | ||||
@if test ! -f $@; then rm -f stamp-h1; else :; fi | |||||
@if test ! -f $@; then $(MAKE) $(AM_MAKEFLAGS) stamp-h1; else :; fi | |||||
@test -f $@ || rm -f stamp-h1 | |||||
@test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1 | |||||
stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status | stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status | ||||
@rm -f stamp-h1 | @rm -f stamp-h1 | ||||
@@ -273,22 +349,25 @@ distclean-hdr: | |||||
-rm -f config.h stamp-h1 | -rm -f config.h stamp-h1 | ||||
# 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. | |||||
# To change the values of `make' variables: instead of editing Makefiles, | |||||
# (1) if the variable is set in `config.status', edit `config.status' | |||||
# (which will cause the Makefiles to be regenerated when you run `make'); | |||||
# (2) otherwise, pass the desired values on the `make' command line. | |||||
$(RECURSIVE_TARGETS): | |||||
@fail= failcom='exit 1'; \ | |||||
for f in x $$MAKEFLAGS; do \ | |||||
case $$f in \ | |||||
*=* | --[!k]*);; \ | |||||
*k*) failcom='fail=yes';; \ | |||||
esac; \ | |||||
done; \ | |||||
# into them and run 'make' without going through this Makefile. | |||||
# To change the values of 'make' variables: instead of editing Makefiles, | |||||
# (1) if the variable is set in 'config.status', edit 'config.status' | |||||
# (which will cause the Makefiles to be regenerated when you run 'make'); | |||||
# (2) otherwise, pass the desired values on the 'make' command line. | |||||
$(am__recursive_targets): | |||||
@fail=; \ | |||||
if $(am__make_keepgoing); then \ | |||||
failcom='fail=yes'; \ | |||||
else \ | |||||
failcom='exit 1'; \ | |||||
fi; \ | |||||
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; \ | ||||
@@ -303,57 +382,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): | |||||
@fail= failcom='exit 1'; \ | |||||
for f in x $$MAKEFLAGS; do \ | |||||
case $$f in \ | |||||
*=* | --[!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: $(am__tagged_files) | |||||
$(am__define_uniq_tagged_files); mkid -fID $$unique | |||||
tags: tags-recursive | |||||
TAGS: tags | |||||
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_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) config.h.in $(TAGS_DEPENDENCIES) \ | |||||
$(TAGS_FILES) $(LISP) | |||||
tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) | |||||
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 \ | ||||
@@ -369,12 +403,7 @@ TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ | |||||
set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ | set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ | ||||
fi; \ | fi; \ | ||||
done; \ | done; \ | ||||
list='$(SOURCES) $(HEADERS) config.h.in $(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; }; }'`; \ | |||||
$(am__define_uniq_tagged_files); \ | |||||
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; \ | ||||
@@ -386,15 +415,11 @@ TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ | |||||
$$unique; \ | $$unique; \ | ||||
fi; \ | fi; \ | ||||
fi | fi | ||||
ctags: CTAGS | |||||
CTAGS: ctags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ | |||||
$(TAGS_FILES) $(LISP) | |||||
list='$(SOURCES) $(HEADERS) config.h.in $(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; }; }'`; \ | |||||
ctags: ctags-recursive | |||||
CTAGS: ctags | |||||
ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) | |||||
$(am__define_uniq_tagged_files); \ | |||||
test -z "$(CTAGS_ARGS)$$unique" \ | test -z "$(CTAGS_ARGS)$$unique" \ | ||||
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ | || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ | ||||
$$unique | $$unique | ||||
@@ -403,11 +428,36 @@ 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 | |||||
distdir: $(DISTFILES) | |||||
distdir: $(BUILT_SOURCES) | |||||
$(MAKE) $(AM_MAKEFLAGS) distdir-am | |||||
distdir-am: $(DISTFILES) | |||||
$(am__remove_distdir) | $(am__remove_distdir) | ||||
test -d "$(distdir)" || mkdir "$(distdir)" | test -d "$(distdir)" || mkdir "$(distdir)" | ||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ | @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ | ||||
@@ -472,41 +522,43 @@ distdir: $(DISTFILES) | |||||
! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ | ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ | ||||
|| chmod -R a+r "$(distdir)" | || chmod -R a+r "$(distdir)" | ||||
dist-gzip: distdir | dist-gzip: distdir | ||||
tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz | |||||
$(am__remove_distdir) | |||||
tardir=$(distdir) && $(am__tar) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).tar.gz | |||||
$(am__post_remove_distdir) | |||||
dist-bzip2: distdir | dist-bzip2: distdir | ||||
tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2 | tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2 | ||||
$(am__remove_distdir) | |||||
$(am__post_remove_distdir) | |||||
dist-lzip: distdir | dist-lzip: distdir | ||||
tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz | tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz | ||||
$(am__remove_distdir) | |||||
dist-lzma: distdir | |||||
tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma | |||||
$(am__remove_distdir) | |||||
$(am__post_remove_distdir) | |||||
dist-xz: distdir | dist-xz: distdir | ||||
tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz | tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz | ||||
$(am__remove_distdir) | |||||
$(am__post_remove_distdir) | |||||
dist-tarZ: distdir | dist-tarZ: distdir | ||||
@echo WARNING: "Support for distribution archives compressed with" \ | |||||
"legacy program 'compress' is deprecated." >&2 | |||||
@echo WARNING: "It will be removed altogether in Automake 2.0" >&2 | |||||
tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z | tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z | ||||
$(am__remove_distdir) | |||||
$(am__post_remove_distdir) | |||||
dist-shar: distdir | dist-shar: distdir | ||||
shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz | |||||
$(am__remove_distdir) | |||||
@echo WARNING: "Support for shar distribution archives is" \ | |||||
"deprecated." >&2 | |||||
@echo WARNING: "It will be removed altogether in Automake 2.0" >&2 | |||||
shar $(distdir) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).shar.gz | |||||
$(am__post_remove_distdir) | |||||
dist-zip: distdir | dist-zip: distdir | ||||
-rm -f $(distdir).zip | -rm -f $(distdir).zip | ||||
zip -rq $(distdir).zip $(distdir) | zip -rq $(distdir).zip $(distdir) | ||||
$(am__remove_distdir) | |||||
$(am__post_remove_distdir) | |||||
dist dist-all: distdir | |||||
tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz | |||||
$(am__remove_distdir) | |||||
dist dist-all: | |||||
$(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:' | |||||
$(am__post_remove_distdir) | |||||
# This target untars the dist file and tries a VPATH configuration. Then | # This target untars the dist file and tries a VPATH configuration. Then | ||||
# it guarantees that the distribution is self-contained by making another | # it guarantees that the distribution is self-contained by making another | ||||
@@ -514,11 +566,9 @@ dist dist-all: distdir | |||||
distcheck: dist | distcheck: dist | ||||
case '$(DIST_ARCHIVES)' in \ | case '$(DIST_ARCHIVES)' in \ | ||||
*.tar.gz*) \ | *.tar.gz*) \ | ||||
GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ | |||||
eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).tar.gz | $(am__untar) ;;\ | |||||
*.tar.bz2*) \ | *.tar.bz2*) \ | ||||
bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ | bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ | ||||
*.tar.lzma*) \ | |||||
lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\ | |||||
*.tar.lz*) \ | *.tar.lz*) \ | ||||
lzip -dc $(distdir).tar.lz | $(am__untar) ;;\ | lzip -dc $(distdir).tar.lz | $(am__untar) ;;\ | ||||
*.tar.xz*) \ | *.tar.xz*) \ | ||||
@@ -526,22 +576,23 @@ distcheck: dist | |||||
*.tar.Z*) \ | *.tar.Z*) \ | ||||
uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ | uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ | ||||
*.shar.gz*) \ | *.shar.gz*) \ | ||||
GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\ | |||||
eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).shar.gz | unshar ;;\ | |||||
*.zip*) \ | *.zip*) \ | ||||
unzip $(distdir).zip ;;\ | unzip $(distdir).zip ;;\ | ||||
esac | esac | ||||
chmod -R a-w $(distdir); chmod u+w $(distdir) | |||||
mkdir $(distdir)/_build | |||||
mkdir $(distdir)/_inst | |||||
chmod -R a-w $(distdir) | |||||
chmod u+w $(distdir) | |||||
mkdir $(distdir)/_build $(distdir)/_build/sub $(distdir)/_inst | |||||
chmod a-w $(distdir) | chmod a-w $(distdir) | ||||
test -d $(distdir)/_build || exit 0; \ | test -d $(distdir)/_build || exit 0; \ | ||||
dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ | dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ | ||||
&& dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ | && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ | ||||
&& am__cwd=`pwd` \ | && am__cwd=`pwd` \ | ||||
&& $(am__cd) $(distdir)/_build \ | |||||
&& ../configure --srcdir=.. --prefix="$$dc_install_base" \ | |||||
&& $(am__cd) $(distdir)/_build/sub \ | |||||
&& ../../configure \ | |||||
$(AM_DISTCHECK_CONFIGURE_FLAGS) \ | $(AM_DISTCHECK_CONFIGURE_FLAGS) \ | ||||
$(DISTCHECK_CONFIGURE_FLAGS) \ | $(DISTCHECK_CONFIGURE_FLAGS) \ | ||||
--srcdir=../.. --prefix="$$dc_install_base" \ | |||||
&& $(MAKE) $(AM_MAKEFLAGS) \ | && $(MAKE) $(AM_MAKEFLAGS) \ | ||||
&& $(MAKE) $(AM_MAKEFLAGS) dvi \ | && $(MAKE) $(AM_MAKEFLAGS) dvi \ | ||||
&& $(MAKE) $(AM_MAKEFLAGS) check \ | && $(MAKE) $(AM_MAKEFLAGS) check \ | ||||
@@ -564,7 +615,7 @@ distcheck: dist | |||||
&& $(MAKE) $(AM_MAKEFLAGS) distcleancheck \ | && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \ | ||||
&& cd "$$am__cwd" \ | && cd "$$am__cwd" \ | ||||
|| exit 1 | || exit 1 | ||||
$(am__remove_distdir) | |||||
$(am__post_remove_distdir) | |||||
@(echo "$(distdir) archives ready for distribution: "; \ | @(echo "$(distdir) archives ready for distribution: "; \ | ||||
list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ | list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ | ||||
sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' | sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' | ||||
@@ -698,13 +749,12 @@ ps-am: | |||||
uninstall-am: | uninstall-am: | ||||
.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) all \ | |||||
ctags-recursive install-am install-strip tags-recursive | |||||
.MAKE: $(am__recursive_targets) all install-am install-strip | |||||
.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ | |||||
all all-am am--refresh check check-am clean clean-generic \ | |||||
ctags ctags-recursive dist dist-all dist-bzip2 dist-gzip \ | |||||
dist-lzip dist-lzma dist-shar dist-tarZ dist-xz dist-zip \ | |||||
.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \ | |||||
am--refresh check check-am clean clean-cscope clean-generic \ | |||||
cscope cscopelist-am ctags ctags-am dist dist-all dist-bzip2 \ | |||||
dist-gzip dist-lzip dist-shar dist-tarZ dist-xz dist-zip \ | |||||
distcheck distclean distclean-generic distclean-hdr \ | distcheck distclean distclean-generic distclean-hdr \ | ||||
distclean-tags distcleancheck distdir distuninstallcheck dvi \ | distclean-tags distcleancheck distdir distuninstallcheck dvi \ | ||||
dvi-am html html-am info info-am install install-am \ | dvi-am html html-am info info-am install install-am \ | ||||
@@ -714,8 +764,10 @@ uninstall-am: | |||||
install-pdf-am install-ps install-ps-am install-strip \ | install-pdf-am install-ps install-ps-am install-strip \ | ||||
installcheck installcheck-am installdirs installdirs-am \ | installcheck installcheck-am installdirs installdirs-am \ | ||||
maintainer-clean maintainer-clean-generic mostlyclean \ | maintainer-clean maintainer-clean-generic mostlyclean \ | ||||
mostlyclean-generic pdf pdf-am ps ps-am tags tags-recursive \ | |||||
uninstall uninstall-am | |||||
mostlyclean-generic pdf pdf-am ps ps-am tags tags-am uninstall \ | |||||
uninstall-am | |||||
.PRECIOUS: Makefile | |||||
# 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,5 +1,14 @@ | |||||
History of Nife releases : | History of Nife releases : | ||||
2022-01-04 - Nife 0.61 is released. | |||||
* Added a definition of HUGE for compilers that no longer have it in | |||||
math.h. Thanks to Jacques Godfrain Kounkou for his bug report ! | |||||
* Added some "include" where it was missing. | |||||
2019-01-27 - Nife 0.60 is released. | |||||
* Updated headers to show that the project is still alive ! | |||||
* The Nife official site is now : https://www.seriane.org/nife/ | |||||
2016-08-15 - Nife 0.59 is released. | 2016-08-15 - Nife 0.59 is released. | ||||
* Add implementation of data meta-stacks tools for context swapping : | * Add implementation of data meta-stacks tools for context swapping : | ||||
[ and ] for respectively increment and decrement the numerical stack, | [ and ] for respectively increment and decrement the numerical stack, | ||||
@@ -79,28 +79,13 @@ How to compile and install nife | |||||
Web Page | Web Page | ||||
http://www.nifesys.org | |||||
https://www.seriane.org/nife/ | |||||
Mailing List and Bug Reports | |||||
nifesys.org hosts all the nife-related mailing-lists. | |||||
+ nife-mailing-list@googlegroups.com is the list used by the people | |||||
that make Nife and a general development discussion list, with | |||||
moderate traffic. | |||||
To subscribe, go directely to : | |||||
http://nifesys.org/mailing_list.html | |||||
+ nife-project@mailman.nifesys.org is the list reserved for people | |||||
who want to discuss Nife in French, with also a moderate traffic. | |||||
To subscribe, go directely to : | |||||
http://mailman.nifesys.org/mailman/listinfo/nife-project | |||||
Bug Reports | |||||
For general bug reports, send a description of the problem to | For general bug reports, send a description of the problem to | ||||
nife@seriane.fr or directly to the development list. | |||||
nife@seriane.fr. | |||||
Current Status | Current Status | ||||
@@ -79,28 +79,13 @@ How to compile and install nife | |||||
Web Page | Web Page | ||||
http://www.nifesys.org | |||||
https://www.seriane.org/nife/ | |||||
Mailing List and Bug Reports | |||||
nifesys.org hosts all the nife-related mailing-lists. | |||||
+ nife-mailing-list@googlegroups.com is the list used by the people | |||||
that make Nife and a general development discussion list, with | |||||
moderate traffic. | |||||
To subscribe, go directely to : | |||||
http://nifesys.org/mailing_list.html | |||||
+ nife-project@mailman.nifesys.org is the list reserved for people | |||||
who want to discuss Nife in French, with also a moderate traffic. | |||||
To subscribe, go directely to : | |||||
http://mailman.nifesys.org/mailman/listinfo/nife-project | |||||
Bug Reports | |||||
For general bug reports, send a description of the problem to | For general bug reports, send a description of the problem to | ||||
nife@seriane.fr or directly to the development list. | |||||
nife@seriane.fr. | |||||
Current Status | Current Status | ||||
@@ -1,6 +1,6 @@ | |||||
#! /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.69 for nife 0.60. | |||||
# Generated by GNU Autoconf 2.69 for nife 0.61. | |||||
# | # | ||||
# Report bugs to <nife@seriane.fr>. | # Report bugs to <nife@seriane.fr>. | ||||
# | # | ||||
@@ -580,8 +580,8 @@ MAKEFLAGS= | |||||
# Identity of this package. | # Identity of this package. | ||||
PACKAGE_NAME='nife' | PACKAGE_NAME='nife' | ||||
PACKAGE_TARNAME='nife' | PACKAGE_TARNAME='nife' | ||||
PACKAGE_VERSION='0.60' | |||||
PACKAGE_STRING='nife 0.60' | |||||
PACKAGE_VERSION='0.61' | |||||
PACKAGE_STRING='nife 0.61' | |||||
PACKAGE_BUGREPORT='nife@seriane.fr' | PACKAGE_BUGREPORT='nife@seriane.fr' | ||||
PACKAGE_URL='' | PACKAGE_URL='' | ||||
@@ -637,7 +637,6 @@ am__nodep | |||||
AMDEPBACKSLASH | AMDEPBACKSLASH | ||||
AMDEP_FALSE | AMDEP_FALSE | ||||
AMDEP_TRUE | AMDEP_TRUE | ||||
am__quote | |||||
am__include | am__include | ||||
DEPDIR | DEPDIR | ||||
OBJEXT | OBJEXT | ||||
@@ -647,6 +646,10 @@ CPPFLAGS | |||||
LDFLAGS | LDFLAGS | ||||
CFLAGS | CFLAGS | ||||
CC | CC | ||||
AM_BACKSLASH | |||||
AM_DEFAULT_VERBOSITY | |||||
AM_DEFAULT_V | |||||
AM_V | |||||
am__untar | am__untar | ||||
am__tar | am__tar | ||||
AMTAR | AMTAR | ||||
@@ -689,6 +692,7 @@ infodir | |||||
docdir | docdir | ||||
oldincludedir | oldincludedir | ||||
includedir | includedir | ||||
runstatedir | |||||
localstatedir | localstatedir | ||||
sharedstatedir | sharedstatedir | ||||
sysconfdir | sysconfdir | ||||
@@ -707,10 +711,12 @@ PACKAGE_VERSION | |||||
PACKAGE_TARNAME | PACKAGE_TARNAME | ||||
PACKAGE_NAME | PACKAGE_NAME | ||||
PATH_SEPARATOR | PATH_SEPARATOR | ||||
SHELL' | |||||
SHELL | |||||
am__quote' | |||||
ac_subst_files='' | ac_subst_files='' | ||||
ac_user_opts=' | ac_user_opts=' | ||||
enable_option_checking | enable_option_checking | ||||
enable_silent_rules | |||||
enable_dependency_tracking | enable_dependency_tracking | ||||
' | ' | ||||
ac_precious_vars='build_alias | ac_precious_vars='build_alias | ||||
@@ -760,6 +766,7 @@ datadir='${datarootdir}' | |||||
sysconfdir='${prefix}/etc' | sysconfdir='${prefix}/etc' | ||||
sharedstatedir='${prefix}/com' | sharedstatedir='${prefix}/com' | ||||
localstatedir='${prefix}/var' | localstatedir='${prefix}/var' | ||||
runstatedir='${localstatedir}/run' | |||||
includedir='${prefix}/include' | includedir='${prefix}/include' | ||||
oldincludedir='/usr/include' | oldincludedir='/usr/include' | ||||
docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' | docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' | ||||
@@ -1012,6 +1019,15 @@ do | |||||
| -silent | --silent | --silen | --sile | --sil) | | -silent | --silent | --silen | --sile | --sil) | ||||
silent=yes ;; | silent=yes ;; | ||||
-runstatedir | --runstatedir | --runstatedi | --runstated \ | |||||
| --runstate | --runstat | --runsta | --runst | --runs \ | |||||
| --run | --ru | --r) | |||||
ac_prev=runstatedir ;; | |||||
-runstatedir=* | --runstatedir=* | --runstatedi=* | --runstated=* \ | |||||
| --runstate=* | --runstat=* | --runsta=* | --runst=* | --runs=* \ | |||||
| --run=* | --ru=* | --r=*) | |||||
runstatedir=$ac_optarg ;; | |||||
-sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) | -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) | ||||
ac_prev=sbindir ;; | ac_prev=sbindir ;; | ||||
-sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ | -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ | ||||
@@ -1149,7 +1165,7 @@ fi | |||||
for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ | for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ | ||||
datadir sysconfdir sharedstatedir localstatedir includedir \ | datadir sysconfdir sharedstatedir localstatedir includedir \ | ||||
oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ | oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ | ||||
libdir localedir mandir | |||||
libdir localedir mandir runstatedir | |||||
do | do | ||||
eval ac_val=\$$ac_var | eval ac_val=\$$ac_var | ||||
# Remove trailing slashes. | # Remove trailing slashes. | ||||
@@ -1262,7 +1278,7 @@ if test "$ac_init_help" = "long"; then | |||||
# Omit some internal or obsolete options to make the list less imposing. | # Omit some internal or obsolete options to make the list less imposing. | ||||
# This message is too long to be a string in the A/UX 3.1 sh. | # This message is too long to be a string in the A/UX 3.1 sh. | ||||
cat <<_ACEOF | cat <<_ACEOF | ||||
\`configure' configures nife 0.60 to adapt to many kinds of systems. | |||||
\`configure' configures nife 0.61 to adapt to many kinds of systems. | |||||
Usage: $0 [OPTION]... [VAR=VALUE]... | Usage: $0 [OPTION]... [VAR=VALUE]... | ||||
@@ -1302,6 +1318,7 @@ Fine tuning of the installation directories: | |||||
--sysconfdir=DIR read-only single-machine data [PREFIX/etc] | --sysconfdir=DIR read-only single-machine data [PREFIX/etc] | ||||
--sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] | --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] | ||||
--localstatedir=DIR modifiable single-machine data [PREFIX/var] | --localstatedir=DIR modifiable single-machine data [PREFIX/var] | ||||
--runstatedir=DIR modifiable per-process data [LOCALSTATEDIR/run] | |||||
--libdir=DIR object code libraries [EPREFIX/lib] | --libdir=DIR object code libraries [EPREFIX/lib] | ||||
--includedir=DIR C header files [PREFIX/include] | --includedir=DIR C header files [PREFIX/include] | ||||
--oldincludedir=DIR C header files for non-gcc [/usr/include] | --oldincludedir=DIR C header files for non-gcc [/usr/include] | ||||
@@ -1328,7 +1345,7 @@ fi | |||||
if test -n "$ac_init_help"; then | if test -n "$ac_init_help"; then | ||||
case $ac_init_help in | case $ac_init_help in | ||||
short | recursive ) echo "Configuration of nife 0.60:";; | |||||
short | recursive ) echo "Configuration of nife 0.61:";; | |||||
esac | esac | ||||
cat <<\_ACEOF | cat <<\_ACEOF | ||||
@@ -1336,8 +1353,12 @@ 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] | ||||
--disable-dependency-tracking speeds up one-time build | |||||
--enable-dependency-tracking do not reject slow dependency extractors | |||||
--enable-silent-rules less verbose build output (undo: "make V=1") | |||||
--disable-silent-rules verbose build output (undo: "make V=0") | |||||
--enable-dependency-tracking | |||||
do not reject slow dependency extractors | |||||
--disable-dependency-tracking | |||||
speeds up one-time build | |||||
Some influential environment variables: | Some influential environment variables: | ||||
CC C compiler command | CC C compiler command | ||||
@@ -1415,7 +1436,7 @@ fi | |||||
test -n "$ac_init_help" && exit $ac_status | test -n "$ac_init_help" && exit $ac_status | ||||
if $ac_init_version; then | if $ac_init_version; then | ||||
cat <<\_ACEOF | cat <<\_ACEOF | ||||
nife configure 0.60 | |||||
nife configure 0.61 | |||||
generated by GNU Autoconf 2.69 | generated by GNU Autoconf 2.69 | ||||
Copyright (C) 2012 Free Software Foundation, Inc. | Copyright (C) 2012 Free Software Foundation, Inc. | ||||
@@ -1838,7 +1859,7 @@ cat >config.log <<_ACEOF | |||||
This file contains any messages produced by compilers while | 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 nife $as_me 0.60, which was | |||||
It was created by nife $as_me 0.61, which was | |||||
generated by GNU Autoconf 2.69. Invocation command line was | generated by GNU Autoconf 2.69. Invocation command line was | ||||
$ $0 $@ | $ $0 $@ | ||||
@@ -2186,7 +2207,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.16' | |||||
ac_aux_dir= | ac_aux_dir= | ||||
for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do | for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do | ||||
@@ -2312,9 +2333,6 @@ 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=' | ||||
@@ -2325,32 +2343,40 @@ case `pwd` in | |||||
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 ( | ||||
set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` | |||||
if test "$*" = "X"; then | |||||
# -L didn't work. | |||||
set X `ls -t "$srcdir/configure" conftest.file` | |||||
fi | |||||
rm -f conftest.file | |||||
if test "$*" != "X $srcdir/configure conftest.file" \ | |||||
&& test "$*" != "X conftest.file $srcdir/configure"; then | |||||
# If neither matched, then we have a broken ls. This can happen | |||||
# if, for instance, CONFIG_SHELL is bash and it inherits a | |||||
# broken ls alias from the environment. This has actually | |||||
# happened. Such a system could not be considered "sane". | |||||
as_fn_error $? "ls -t appears to fail. Make sure there is not a broken | |||||
alias in your environment" "$LINENO" 5 | |||||
fi | |||||
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` | |||||
if test "$*" = "X"; then | |||||
# -L didn't work. | |||||
set X `ls -t "$srcdir/configure" conftest.file` | |||||
fi | |||||
if test "$*" != "X $srcdir/configure conftest.file" \ | |||||
&& test "$*" != "X conftest.file $srcdir/configure"; then | |||||
# If neither matched, then we have a broken ls. This can happen | |||||
# if, for instance, CONFIG_SHELL is bash and it inherits a | |||||
# broken ls alias from the environment. This has actually | |||||
# happened. Such a system could not be considered "sane". | |||||
as_fn_error $? "ls -t appears to fail. Make sure there is not a broken | |||||
alias in your environment" "$LINENO" 5 | |||||
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 | ||||
@@ -2362,6 +2388,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. | ||||
@@ -2372,8 +2408,8 @@ test "$program_suffix" != NONE && | |||||
ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' | ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' | ||||
program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"` | program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"` | ||||
# expand $ac_aux_dir to an absolute path | |||||
am_aux_dir=`cd $ac_aux_dir && pwd` | |||||
# Expand $ac_aux_dir to an absolute path. | |||||
am_aux_dir=`cd "$ac_aux_dir" && pwd` | |||||
if test x"${MISSING+set}" != xset; then | if test x"${MISSING+set}" != xset; then | ||||
case $am_aux_dir in | case $am_aux_dir in | ||||
@@ -2384,15 +2420,15 @@ 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 | |||||
am_missing_run="$MISSING --run " | |||||
if eval "$MISSING --is-lightweight"; then | |||||
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: WARNING: \`missing' script is too old or missing" >&2;} | |||||
{ $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;} | |||||
fi | fi | ||||
if test x"${install_sh}" != xset; then | |||||
if test x"${install_sh+set}" != xset; then | |||||
case $am_aux_dir in | case $am_aux_dir in | ||||
*\ * | *\ *) | *\ * | *\ *) | ||||
install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; | install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; | ||||
@@ -2401,10 +2437,10 @@ if test x"${install_sh}" != xset; then | |||||
esac | esac | ||||
fi | fi | ||||
# Installed binaries are usually stripped using `strip' when the user | |||||
# run `make install-strip'. However `strip' might not be the right | |||||
# Installed binaries are usually stripped using 'strip' when the user | |||||
# 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. | ||||
@@ -2543,12 +2579,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. | ||||
@@ -2631,6 +2661,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." | ||||
@@ -2653,7 +2722,7 @@ fi | |||||
# Define the identity of the package. | # Define the identity of the package. | ||||
PACKAGE='nife' | PACKAGE='nife' | ||||
VERSION='0.60' | |||||
VERSION='0.61' | |||||
cat >>confdefs.h <<_ACEOF | cat >>confdefs.h <<_ACEOF | ||||
@@ -2681,12 +2750,22 @@ AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} | |||||
MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} | MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} | ||||
# We need awk for the "check" target. The system "awk" is bad on | |||||
# some platforms. | |||||
# For better backward compatibility. To be removed once Automake 1.9.x | |||||
# dies out for good. For more background, see: | |||||
# <https://lists.gnu.org/archive/html/automake/2012-07/msg00001.html> | |||||
# <https://lists.gnu.org/archive/html/automake/2012-07/msg00014.html> | |||||
mkdir_p='$(MKDIR_P)' | |||||
# We need awk for the "check" target (and possibly the TAP driver). The | |||||
# system "awk" is bad on some platforms. | |||||
# Always define AMTAR for backward compatibility. Yes, it's still used | # Always define AMTAR for backward compatibility. Yes, it's still used | ||||
# in the wild :-( We should find a proper way to deprecate it ... | # in the wild :-( We should find a proper way to deprecate it ... | ||||
AMTAR='$${TAR-tar}' | AMTAR='$${TAR-tar}' | ||||
# 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 -' | am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -' | ||||
@@ -2694,6 +2773,49 @@ 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: <https://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 | |||||
ac_config_headers="$ac_config_headers config.h" | ac_config_headers="$ac_config_headers config.h" | ||||
@@ -3487,49 +3609,108 @@ ac_cpp='$CPP $CPPFLAGS' | |||||
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' | 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 | |||||
DEPDIR="${am__leading_dot}deps" | DEPDIR="${am__leading_dot}deps" | ||||
ac_config_commands="$ac_config_commands depfiles" | ac_config_commands="$ac_config_commands depfiles" | ||||
am_make=${MAKE-make} | |||||
cat > confinc << 'END' | |||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} supports the include directive" >&5 | |||||
$as_echo_n "checking whether ${MAKE-make} supports the include directive... " >&6; } | |||||
cat > confinc.mk << 'END' | |||||
am__doit: | am__doit: | ||||
@echo this is the am__doit target | |||||
@echo this is the am__doit target >confinc.out | |||||
.PHONY: am__doit | .PHONY: am__doit | ||||
END | END | ||||
# If we don't find an include directive, just comment out the code. | |||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5 | |||||
$as_echo_n "checking for style of include used by $am_make... " >&6; } | |||||
am__include="#" | am__include="#" | ||||
am__quote= | am__quote= | ||||
_am_result=none | |||||
# First try GNU make style include. | |||||
echo "include confinc" > confmf | |||||
# Ignore all kinds of additional output from `make'. | |||||
case `$am_make -s -f confmf 2> /dev/null` in #( | |||||
*the\ am__doit\ target*) | |||||
am__include=include | |||||
am__quote= | |||||
_am_result=GNU | |||||
;; | |||||
esac | |||||
# Now try BSD make style include. | |||||
if test "$am__include" = "#"; then | |||||
echo '.include "confinc"' > confmf | |||||
case `$am_make -s -f confmf 2> /dev/null` in #( | |||||
*the\ am__doit\ target*) | |||||
am__include=.include | |||||
am__quote="\"" | |||||
_am_result=BSD | |||||
# BSD make does it like this. | |||||
echo '.include "confinc.mk" # ignored' > confmf.BSD | |||||
# Other make implementations (GNU, Solaris 10, AIX) do it like this. | |||||
echo 'include confinc.mk # ignored' > confmf.GNU | |||||
_am_result=no | |||||
for s in GNU BSD; do | |||||
{ echo "$as_me:$LINENO: ${MAKE-make} -f confmf.$s && cat confinc.out" >&5 | |||||
(${MAKE-make} -f confmf.$s && cat confinc.out) >&5 2>&5 | |||||
ac_status=$? | |||||
echo "$as_me:$LINENO: \$? = $ac_status" >&5 | |||||
(exit $ac_status); } | |||||
case $?:`cat confinc.out 2>/dev/null` in #( | |||||
'0:this is the am__doit target') : | |||||
case $s in #( | |||||
BSD) : | |||||
am__include='.include' am__quote='"' ;; #( | |||||
*) : | |||||
am__include='include' am__quote='' ;; | |||||
esac ;; #( | |||||
*) : | |||||
;; | ;; | ||||
esac | |||||
fi | |||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5 | |||||
$as_echo "$_am_result" >&6; } | |||||
rm -f confinc confmf | |||||
esac | |||||
if test "$am__include" != "#"; then | |||||
_am_result="yes ($s style)" | |||||
break | |||||
fi | |||||
done | |||||
rm -f confinc.* confmf.* | |||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${_am_result}" >&5 | |||||
$as_echo "${_am_result}" >&6; } | |||||
# Check whether --enable-dependency-tracking was given. | # Check whether --enable-dependency-tracking was given. | ||||
if test "${enable_dependency_tracking+set}" = set; then : | if test "${enable_dependency_tracking+set}" = set; then : | ||||
@@ -3562,8 +3743,8 @@ else | |||||
# We make a subdir and do the tests there. Otherwise we can end up | # We make a subdir and do the tests there. Otherwise we can end up | ||||
# making bogus files that we don't know about and never remove. For | # making bogus files that we don't know about and never remove. For | ||||
# instance it was reported that on HP-UX the gcc test will end up | # instance it was reported that on HP-UX the gcc test will end up | ||||
# making a dummy file named `D' -- because `-MD' means `put the output | |||||
# in D'. | |||||
# making a dummy file named 'D' -- because '-MD' means "put the output | |||||
# in D". | |||||
rm -rf conftest.dir | rm -rf conftest.dir | ||||
mkdir conftest.dir | mkdir conftest.dir | ||||
# Copy depcomp to subdir because otherwise we won't find it if we're | # Copy depcomp to subdir because otherwise we won't find it if we're | ||||
@@ -3598,16 +3779,16 @@ else | |||||
: > sub/conftest.c | : > sub/conftest.c | ||||
for i in 1 2 3 4 5 6; do | for i in 1 2 3 4 5 6; do | ||||
echo '#include "conftst'$i'.h"' >> sub/conftest.c | echo '#include "conftst'$i'.h"' >> sub/conftest.c | ||||
# Using `: > sub/conftst$i.h' creates only sub/conftst1.h with | |||||
# Solaris 8's {/usr,}/bin/sh. | |||||
touch sub/conftst$i.h | |||||
# Using ": > sub/conftst$i.h" creates only sub/conftst1.h with | |||||
# Solaris 10 /bin/sh. | |||||
echo '/* dummy */' > sub/conftst$i.h | |||||
done | done | ||||
echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf | echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf | ||||
# We check with `-c' and `-o' for the sake of the "dashmstdout" | |||||
# We check with '-c' and '-o' for the sake of the "dashmstdout" | |||||
# mode. It turns out that the SunPro C++ compiler does not properly | # mode. It turns out that the SunPro C++ compiler does not properly | ||||
# handle `-M -o', and we need to detect this. Also, some Intel | |||||
# versions had trouble with output in subdirs | |||||
# handle '-M -o', and we need to detect this. Also, some Intel | |||||
# versions had trouble with output in subdirs. | |||||
am__obj=sub/conftest.${OBJEXT-o} | am__obj=sub/conftest.${OBJEXT-o} | ||||
am__minus_obj="-o $am__obj" | am__minus_obj="-o $am__obj" | ||||
case $depmode in | case $depmode in | ||||
@@ -3616,8 +3797,8 @@ else | |||||
test "$am__universal" = false || continue | test "$am__universal" = false || continue | ||||
;; | ;; | ||||
nosideeffect) | nosideeffect) | ||||
# after this tag, mechanisms are not by side-effect, so they'll | |||||
# only be used when explicitly requested | |||||
# After this tag, mechanisms are not by side-effect, so they'll | |||||
# only be used when explicitly requested. | |||||
if test "x$enable_dependency_tracking" = xyes; then | if test "x$enable_dependency_tracking" = xyes; then | ||||
continue | continue | ||||
else | else | ||||
@@ -3625,7 +3806,7 @@ else | |||||
fi | fi | ||||
;; | ;; | ||||
msvc7 | msvc7msys | msvisualcpp | msvcmsys) | msvc7 | msvc7msys | msvisualcpp | msvcmsys) | ||||
# This compiler won't grok `-c -o', but also, the minuso test has | |||||
# This compiler won't grok '-c -o', but also, the minuso test has | |||||
# not run yet. These depmodes are late enough in the game, and | # not run yet. These depmodes are late enough in the game, and | ||||
# so weak that their functioning should not be impacted. | # so weak that their functioning should not be impacted. | ||||
am__obj=conftest.${OBJEXT-o} | am__obj=conftest.${OBJEXT-o} | ||||
@@ -5067,6 +5248,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='#' | ||||
@@ -5480,7 +5669,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 | |||||
# report actual input values of CONFIG_FILES etc. instead of their | # report actual input values of CONFIG_FILES etc. instead of their | ||||
# values after options handling. | # values after options handling. | ||||
ac_log=" | ac_log=" | ||||
This file was extended by nife $as_me 0.60, which was | |||||
This file was extended by nife $as_me 0.61, which was | |||||
generated by GNU Autoconf 2.69. Invocation command line was | generated by GNU Autoconf 2.69. Invocation command line was | ||||
CONFIG_FILES = $CONFIG_FILES | CONFIG_FILES = $CONFIG_FILES | ||||
@@ -5546,7 +5735,7 @@ _ACEOF | |||||
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 | 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="\\ | ||||
nife config.status 0.60 | |||||
nife config.status 0.61 | |||||
configured by $0, generated by GNU Autoconf 2.69, | configured by $0, generated by GNU Autoconf 2.69, | ||||
with options \\"\$ac_cs_config\\" | with options \\"\$ac_cs_config\\" | ||||
@@ -5665,7 +5854,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 | |||||
# | # | ||||
# INIT-COMMANDS | # INIT-COMMANDS | ||||
# | # | ||||
AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" | |||||
AMDEP_TRUE="$AMDEP_TRUE" MAKE="${MAKE-make}" | |||||
_ACEOF | _ACEOF | ||||
@@ -6275,32 +6464,38 @@ $as_echo "$as_me: executing $ac_file commands" >&6;} | |||||
case $ac_file$ac_mode in | case $ac_file$ac_mode in | ||||
"depfiles":C) test x"$AMDEP_TRUE" != x"" || { | "depfiles":C) test x"$AMDEP_TRUE" != x"" || { | ||||
# Autoconf 2.62 quotes --file arguments for eval, but not when files | |||||
# Older Autoconf quotes --file arguments for eval, but not when files | |||||
# are listed without --file. Let's play safe and only enable the eval | # are listed without --file. Let's play safe and only enable the eval | ||||
# if we detect the quoting. | # if we detect the quoting. | ||||
case $CONFIG_FILES in | |||||
*\'*) eval set x "$CONFIG_FILES" ;; | |||||
*) set x $CONFIG_FILES ;; | |||||
esac | |||||
# TODO: see whether this extra hack can be removed once we start | |||||
# requiring Autoconf 2.70 or later. | |||||
case $CONFIG_FILES in #( | |||||
*\'*) : | |||||
eval set x "$CONFIG_FILES" ;; #( | |||||
*) : | |||||
set x $CONFIG_FILES ;; #( | |||||
*) : | |||||
;; | |||||
esac | |||||
shift | shift | ||||
for mf | |||||
# Used to flag and report bootstrapping failures. | |||||
am_rc=0 | |||||
for am_mf | |||||
do | do | ||||
# Strip MF so we end up with the name of the file. | # Strip MF so we end up with the name of the file. | ||||
mf=`echo "$mf" | sed -e 's/:.*$//'` | |||||
# Check whether this is an Automake generated Makefile or not. | |||||
# We used to match only the files named `Makefile.in', but | |||||
# some people rename them; so instead we look at the file content. | |||||
# Grep'ing the first line is not enough: some people post-process | |||||
# each Makefile.in and add a new line on top of each file to say so. | |||||
# Grep'ing the whole file is not good either: AIX grep has a line | |||||
am_mf=`$as_echo "$am_mf" | sed -e 's/:.*$//'` | |||||
# Check whether this is an Automake generated Makefile which includes | |||||
# dependency-tracking related rules and includes. | |||||
# Grep'ing the whole file directly is not great: AIX grep has a line | |||||
# limit of 2048, but all sed's we know have understand at least 4000. | # limit of 2048, but all sed's we know have understand at least 4000. | ||||
if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then | |||||
dirpart=`$as_dirname -- "$mf" || | |||||
$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ | |||||
X"$mf" : 'X\(//\)[^/]' \| \ | |||||
X"$mf" : 'X\(//\)$' \| \ | |||||
X"$mf" : 'X\(/\)' \| . 2>/dev/null || | |||||
$as_echo X"$mf" | | |||||
sed -n 's,^am--depfiles:.*,X,p' "$am_mf" | grep X >/dev/null 2>&1 \ | |||||
|| continue | |||||
am_dirpart=`$as_dirname -- "$am_mf" || | |||||
$as_expr X"$am_mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ | |||||
X"$am_mf" : 'X\(//\)[^/]' \| \ | |||||
X"$am_mf" : 'X\(//\)$' \| \ | |||||
X"$am_mf" : 'X\(/\)' \| . 2>/dev/null || | |||||
$as_echo X"$am_mf" | | |||||
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ | ||||
s//\1/ | s//\1/ | ||||
q | q | ||||
@@ -6318,55 +6513,48 @@ $as_echo X"$mf" | | |||||
q | q | ||||
} | } | ||||
s/.*/./; q'` | s/.*/./; q'` | ||||
else | |||||
continue | |||||
fi | |||||
# Extract the definition of DEPDIR, am__include, and am__quote | |||||
# from the Makefile without running `make'. | |||||
DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` | |||||
test -z "$DEPDIR" && continue | |||||
am__include=`sed -n 's/^am__include = //p' < "$mf"` | |||||
test -z "am__include" && continue | |||||
am__quote=`sed -n 's/^am__quote = //p' < "$mf"` | |||||
# When using ansi2knr, U may be empty or an underscore; expand it | |||||
U=`sed -n 's/^U = //p' < "$mf"` | |||||
# Find all dependency output files, they are included files with | |||||
# $(DEPDIR) in their names. We invoke sed twice because it is the | |||||
# simplest approach to changing $(DEPDIR) to its actual value in the | |||||
# expansion. | |||||
for file in `sed -n " | |||||
s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ | |||||
sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do | |||||
# Make sure the directory exists. | |||||
test -f "$dirpart/$file" && continue | |||||
fdir=`$as_dirname -- "$file" || | |||||
$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ | |||||
X"$file" : 'X\(//\)[^/]' \| \ | |||||
X"$file" : 'X\(//\)$' \| \ | |||||
X"$file" : 'X\(/\)' \| . 2>/dev/null || | |||||
$as_echo X"$file" | | |||||
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ | |||||
s//\1/ | |||||
q | |||||
} | |||||
/^X\(\/\/\)[^/].*/{ | |||||
am_filepart=`$as_basename -- "$am_mf" || | |||||
$as_expr X/"$am_mf" : '.*/\([^/][^/]*\)/*$' \| \ | |||||
X"$am_mf" : 'X\(//\)$' \| \ | |||||
X"$am_mf" : 'X\(/\)' \| . 2>/dev/null || | |||||
$as_echo X/"$am_mf" | | |||||
sed '/^.*\/\([^/][^/]*\)\/*$/{ | |||||
s//\1/ | s//\1/ | ||||
q | q | ||||
} | } | ||||
/^X\(\/\/\)$/{ | |||||
/^X\/\(\/\/\)$/{ | |||||
s//\1/ | s//\1/ | ||||
q | q | ||||
} | } | ||||
/^X\(\/\).*/{ | |||||
/^X\/\(\/\).*/{ | |||||
s//\1/ | s//\1/ | ||||
q | q | ||||
} | } | ||||
s/.*/./; q'` | s/.*/./; q'` | ||||
as_dir=$dirpart/$fdir; as_fn_mkdir_p | |||||
# echo "creating $dirpart/$file" | |||||
echo '# dummy' > "$dirpart/$file" | |||||
done | |||||
{ echo "$as_me:$LINENO: cd "$am_dirpart" \ | |||||
&& sed -e '/# am--include-marker/d' "$am_filepart" \ | |||||
| $MAKE -f - am--depfiles" >&5 | |||||
(cd "$am_dirpart" \ | |||||
&& sed -e '/# am--include-marker/d' "$am_filepart" \ | |||||
| $MAKE -f - am--depfiles) >&5 2>&5 | |||||
ac_status=$? | |||||
echo "$as_me:$LINENO: \$? = $ac_status" >&5 | |||||
(exit $ac_status); } || am_rc=$? | |||||
done | done | ||||
if test $am_rc -ne 0; then | |||||
{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 | |||||
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} | |||||
as_fn_error $? "Something went wrong bootstrapping makefile fragments | |||||
for automatic dependency tracking. Try re-running configure with the | |||||
'--disable-dependency-tracking' option to at least be able to build | |||||
the package (albeit without support for automatic dependency tracking). | |||||
See \`config.log' for more details" "$LINENO" 5; } | |||||
fi | |||||
{ am_dirpart=; unset am_dirpart;} | |||||
{ am_filepart=; unset am_filepart;} | |||||
{ am_mf=; unset am_mf;} | |||||
{ am_rc=; unset am_rc;} | |||||
rm -f conftest-deps.mk | |||||
} | } | ||||
;; | ;; | ||||
@@ -2,7 +2,7 @@ | |||||
# Process this file with autoconf to produce a configure script. | # Process this file with autoconf to produce a configure script. | ||||
AC_PREREQ([2.67]) | AC_PREREQ([2.67]) | ||||
AC_INIT([nife], [0.60], [nife@seriane.fr]) | |||||
AC_INIT([nife], [0.61], [nife@seriane.fr]) | |||||
AM_INIT_AUTOMAKE | AM_INIT_AUTOMAKE | ||||
AC_CONFIG_SRCDIR([src/tasks.c]) | AC_CONFIG_SRCDIR([src/tasks.c]) | ||||
@@ -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=2005-06-08.21 | |||||
scriptversion=2018-03-07.03; # UTC | |||||
# Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005 | |||||
# Free Software Foundation, Inc. | |||||
# Originally by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996. | |||||
# Copyright (C) 1996-2018 Free Software Foundation, Inc. | |||||
# Originally written 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 | ||||
@@ -18,9 +17,7 @@ scriptversion=2005-06-08.21 | |||||
# GNU General Public License for more details. | # GNU General Public License for more details. | ||||
# You should have received a copy of the GNU General Public License | # You should have received a copy of the GNU General Public License | ||||
# along with this program; if not, write to the Free Software | |||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA | |||||
# 02110-1301, USA. | |||||
# along with this program. If not, see <https://www.gnu.org/licenses/>. | |||||
# As a special exception to the GNU General Public License, if you | # As a special exception to the GNU General Public License, if you | ||||
# distribute this file as part of a program that contains a | # distribute this file as part of a program that contains a | ||||
@@ -28,63 +25,40 @@ scriptversion=2005-06-08.21 | |||||
# 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=: | |||||
case $1 in | |||||
# 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" | |||||
--is-lightweight) | |||||
# Used by our autoconf macros to check whether the available missing | |||||
# script is modern enough. | |||||
exit 0 | |||||
;; | |||||
case "$1" in | |||||
--run) | |||||
# Try to run requested program, and just exit if it succeeds. | |||||
run= | |||||
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 | |||||
;; | |||||
--run) | |||||
# Back-compat with the calling convention used by older automake. | |||||
shift | |||||
;; | |||||
-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 | |||||
error status if there is no known handling for PROGRAM. | |||||
Run 'PROGRAM [ARGUMENT]...', returning a proper advice when this fails due | |||||
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' | |||||
autoconf touch file \`configure' | |||||
autoheader touch file \`config.h.in' | |||||
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] | |||||
aclocal autoconf autoheader autom4te automake makeinfo | |||||
bison yacc flex lex help2man | |||||
Version suffixes to PROGRAM as well as the prefixes 'gnu-', 'gnu', and | |||||
'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 $? | ||||
@@ -96,265 +70,146 @@ Send bug reports to <bug-automake@gnu.org>." | |||||
;; | ;; | ||||
-*) | -*) | ||||
echo 1>&2 "$0: Unknown \`$1' option" | |||||
echo 1>&2 "Try \`$0 --help' for more information" | |||||
echo 1>&2 "$0: unknown '$1' option" | |||||
echo 1>&2 "Try '$0 --help' for more information" | |||||
exit 1 | exit 1 | ||||
;; | ;; | ||||
esac | esac | ||||
# Now exit if we have it, but it failed. Also exit now if we | |||||
# don't have it and --version was passed (most likely to detect | |||||
# the 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 "$1" 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 | |||||
;; | |||||
autoconf) | |||||
echo 1>&2 "\ | |||||
WARNING: \`$1' is $msg. You should only need it if | |||||
you modified \`${configure_ac}'. You might want to install the | |||||
\`Autoconf' and \`GNU m4' packages. Grab them from any GNU | |||||
archive site." | |||||
touch configure | |||||
;; | |||||
autoheader) | |||||
echo 1>&2 "\ | |||||
WARNING: \`$1' is $msg. You should only need it if | |||||
you modified \`acconfig.h' or \`${configure_ac}'. You might want | |||||
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*) | |||||
echo 1>&2 "\ | |||||
WARNING: \`$1' is $msg. You should only need it if | |||||
you modified \`Makefile.am', \`acinclude.m4' or \`${configure_ac}'. | |||||
You might want to install the \`Automake' and \`Perl' packages. | |||||
Grab them from any GNU archive site." | |||||
find . -type f -name Makefile.am -print | | |||||
sed 's/\.am$/.in/' | | |||||
while read f; do touch "$f"; done | |||||
;; | |||||
autom4te) | |||||
echo 1>&2 "\ | |||||
WARNING: \`$1' is needed, but is $msg. | |||||
You might have modified some files without having the | |||||
proper tools for further handling them. | |||||
You can get \`$1' as part of \`Autoconf' from any GNU | |||||
archive site." | |||||
file=`echo "$*" | sed -n 's/.*--output[ =]*\([^ ]*\).*/\1/p'` | |||||
test -z "$file" && file=`echo "$*" | sed -n 's/.*-o[ ]*\([^ ]*\).*/\1/p'` | |||||
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) | |||||
echo 1>&2 "\ | |||||
WARNING: \`$1' $msg. You should only need it if | |||||
you modified a \`.y' file. You may need the \`Bison' package | |||||
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 [ $# -ne 1 ]; then | |||||
eval LASTARG="\${$#}" | |||||
case "$LASTARG" in | |||||
*.y) | |||||
SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'` | |||||
if [ -f "$SRCFILE" ]; then | |||||
cp "$SRCFILE" y.tab.c | |||||
fi | |||||
SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'` | |||||
if [ -f "$SRCFILE" ]; then | |||||
cp "$SRCFILE" y.tab.h | |||||
fi | |||||
;; | |||||
esac | |||||
fi | |||||
if [ ! -f y.tab.h ]; then | |||||
echo >y.tab.h | |||||
fi | |||||
if [ ! -f y.tab.c ]; then | |||||
echo 'main() { return 0; }' >y.tab.c | |||||
fi | |||||
;; | |||||
lex|flex) | |||||
echo 1>&2 "\ | |||||
WARNING: \`$1' is $msg. You should only need it if | |||||
you modified a \`.l' file. You may need the \`Flex' package | |||||
in order for those modifications to take effect. You can get | |||||
\`Flex' from any GNU archive site." | |||||
rm -f lex.yy.c | |||||
if [ $# -ne 1 ]; then | |||||
eval LASTARG="\${$#}" | |||||
case "$LASTARG" in | |||||
*.l) | |||||
SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'` | |||||
if [ -f "$SRCFILE" ]; then | |||||
cp "$SRCFILE" lex.yy.c | |||||
fi | |||||
;; | |||||
esac | |||||
fi | |||||
if [ ! -f lex.yy.c ]; then | |||||
echo 'main() { return 0; }' >lex.yy.c | |||||
fi | |||||
;; | |||||
help2man) | |||||
echo 1>&2 "\ | |||||
WARNING: \`$1' is $msg. You should only need it if | |||||
you modified a dependency of a manual page. You may need the | |||||
\`Help2man' package in order for those modifications to take | |||||
effect. You can get \`Help2man' from any GNU archive site." | |||||
file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'` | |||||
if test -z "$file"; then | |||||
file=`echo "$*" | sed -n 's/.*--output=\([^ ]*\).*/\1/p'` | |||||
fi | |||||
if [ -f "$file" ]; then | |||||
touch $file | |||||
else | |||||
test -z "$file" || exec >$file | |||||
echo ".ab help2man is required to generate this page" | |||||
exit 1 | |||||
fi | |||||
;; | |||||
makeinfo) | |||||
echo 1>&2 "\ | |||||
WARNING: \`$1' is $msg. You should only need it if | |||||
you modified a \`.texi' or \`.texinfo' file, or any other file | |||||
indirectly affecting the aspect of the manual. The spurious | |||||
call might also be the consequence of using a buggy \`make' (AIX, | |||||
DU, IRIX). You might want to install the \`Texinfo' package or | |||||
the \`GNU make' package. Grab either from any GNU archive site." | |||||
# The file to touch is that specified with -o ... | |||||
file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'` | |||||
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 "\ | |||||
WARNING: \`$1' is needed, and is $msg. | |||||
You might have modified some files without having the | |||||
proper tools for further handling them. Check the \`README' file, | |||||
it often tells you about the needed prerequisites for installing | |||||
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 | |||||
# Run the given program, remember its exit status. | |||||
"$@"; 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 | |||||
exit 0 | |||||
perl_URL=https://www.perl.org/ | |||||
flex_URL=https://github.com/westes/flex | |||||
gnu_software_URL=https://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/^g//; t'` | |||||
printf '%s\n' "'$1' is $msg." | |||||
configure_deps="'configure.ac' or m4 files included by 'configure.ac'" | |||||
case $normalized_program in | |||||
autoconf*) | |||||
echo "You should only need it if you modified 'configure.ac'," | |||||
echo "or m4 files included by it." | |||||
program_details 'autoconf' | |||||
;; | |||||
autoheader*) | |||||
echo "You should only need it if you modified 'acconfig.h' or" | |||||
echo "$configure_deps." | |||||
program_details 'autoheader' | |||||
;; | |||||
automake*) | |||||
echo "You should only need it if you modified 'Makefile.am' or" | |||||
echo "$configure_deps." | |||||
program_details 'automake' | |||||
;; | |||||
aclocal*) | |||||
echo "You should only need it if you modified 'acinclude.m4' or" | |||||
echo "$configure_deps." | |||||
program_details 'aclocal' | |||||
;; | |||||
autom4te*) | |||||
echo "You might have modified some maintainer files that require" | |||||
echo "the 'autom4te' program to be rebuilt." | |||||
program_details 'autom4te' | |||||
;; | |||||
bison*|yacc*) | |||||
echo "You should only need it if you modified a '.y' file." | |||||
echo "You may want to install the GNU Bison package:" | |||||
echo "<$gnu_software_URL/bison/>" | |||||
;; | |||||
lex*|flex*) | |||||
echo "You should only need it if you modified a '.l' file." | |||||
echo "You may want to install the Fast Lexical Analyzer package:" | |||||
echo "<$flex_URL>" | |||||
;; | |||||
help2man*) | |||||
echo "You should only need it if you modified a dependency" \ | |||||
"of a man page." | |||||
echo "You may want to install the GNU Help2man package:" | |||||
echo "<$gnu_software_URL/help2man/>" | |||||
;; | |||||
makeinfo*) | |||||
echo "You should only need it if you modified a '.texi' file, or" | |||||
echo "any other file indirectly affecting the aspect of the manual." | |||||
echo "You might want to install the Texinfo package:" | |||||
echo "<$gnu_software_URL/texinfo/>" | |||||
echo "The spurious makeinfo call might also be the consequence of" | |||||
echo "using a buggy 'make' (AIX, DU, IRIX), in which case you might" | |||||
echo "want to install GNU make:" | |||||
echo "<$gnu_software_URL/make/>" | |||||
;; | |||||
*) | |||||
echo "You might have modified some files without having the proper" | |||||
echo "tools for further handling them. Check the 'README' file, it" | |||||
echo "often tells you about the needed prerequisites for installing" | |||||
echo "this package. You may also peek at any GNU archive site, in" | |||||
echo "case some other package contains this missing '$1' program." | |||||
;; | |||||
esac | |||||
} | |||||
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 'before-save-hook 'time-stamp) | |||||
# time-stamp-start: "scriptversion=" | # time-stamp-start: "scriptversion=" | ||||
# time-stamp-format: "%:y-%02m-%02d.%02H" | # time-stamp-format: "%:y-%02m-%02d.%02H" | ||||
# time-stamp-end: "$" | |||||
# time-stamp-time-zone: "UTC0" | |||||
# time-stamp-end: "; # UTC" | |||||
# End: | # End: |
@@ -1,9 +1,8 @@ | |||||
# Makefile.in generated by automake 1.11.6 from Makefile.am. | |||||
# Makefile.in generated by automake 1.16.1 from Makefile.am. | |||||
# @configure_input@ | # @configure_input@ | ||||
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, | |||||
# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software | |||||
# Foundation, Inc. | |||||
# Copyright (C) 1994-2018 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. | ||||
@@ -20,23 +19,61 @@ | |||||
################################ | ################################ | ||||
VPATH = @srcdir@ | VPATH = @srcdir@ | ||||
am__make_dryrun = \ | |||||
{ \ | |||||
am__dry=no; \ | |||||
am__is_gnu_make = { \ | |||||
if test -z '$(MAKELEVEL)'; then \ | |||||
false; \ | |||||
elif test -n '$(MAKE_HOST)'; then \ | |||||
true; \ | |||||
elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ | |||||
true; \ | |||||
else \ | |||||
false; \ | |||||
fi; \ | |||||
} | |||||
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 \ | case $$MAKEFLAGS in \ | ||||
*\\[\ \ ]*) \ | *\\[\ \ ]*) \ | ||||
echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ | |||||
| grep '^AM OK$$' >/dev/null || am__dry=yes;; \ | |||||
*) \ | |||||
for am__flg in $$MAKEFLAGS; do \ | |||||
case $$am__flg in \ | |||||
*=*|--*) ;; \ | |||||
*n*) am__dry=yes; break;; \ | |||||
esac; \ | |||||
done;; \ | |||||
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; \ | esac; \ | ||||
test $$am__dry = yes; \ | |||||
} | |||||
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@ | ||||
@@ -55,11 +92,11 @@ PRE_UNINSTALL = : | |||||
POST_UNINSTALL = : | POST_UNINSTALL = : | ||||
bin_PROGRAMS = nife$(EXEEXT) | bin_PROGRAMS = nife$(EXEEXT) | ||||
subdir = src | subdir = src | ||||
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in | |||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | ||||
am__aclocal_m4_deps = $(top_srcdir)/configure.ac | am__aclocal_m4_deps = $(top_srcdir)/configure.ac | ||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ | am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ | ||||
$(ACLOCAL_M4) | $(ACLOCAL_M4) | ||||
DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) | |||||
mkinstalldirs = $(install_sh) -d | mkinstalldirs = $(install_sh) -d | ||||
CONFIG_HEADER = $(top_builddir)/config.h | CONFIG_HEADER = $(top_builddir)/config.h | ||||
CONFIG_CLEAN_FILES = | CONFIG_CLEAN_FILES = | ||||
@@ -75,14 +112,43 @@ am_nife_OBJECTS = nife.$(OBJEXT) mth.$(OBJEXT) err.$(OBJEXT) \ | |||||
debug.$(OBJEXT) | debug.$(OBJEXT) | ||||
nife_OBJECTS = $(am_nife_OBJECTS) | nife_OBJECTS = $(am_nife_OBJECTS) | ||||
nife_LDADD = $(LDADD) | nife_LDADD = $(LDADD) | ||||
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@ -I$(top_builddir) | DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) | ||||
depcomp = $(SHELL) $(top_srcdir)/depcomp | depcomp = $(SHELL) $(top_srcdir)/depcomp | ||||
am__depfiles_maybe = depfiles | |||||
am__maybe_remake_depfiles = depfiles | |||||
am__depfiles_remade = ./$(DEPDIR)/debug.Po ./$(DEPDIR)/dev.Po \ | |||||
./$(DEPDIR)/err.Po ./$(DEPDIR)/foncs.Po ./$(DEPDIR)/gplot.Po \ | |||||
./$(DEPDIR)/help.Po ./$(DEPDIR)/histo.Po ./$(DEPDIR)/i2c.Po \ | |||||
./$(DEPDIR)/lib.Po ./$(DEPDIR)/libmath.Po \ | |||||
./$(DEPDIR)/libmathc99.Po ./$(DEPDIR)/mth.Po \ | |||||
./$(DEPDIR)/net.Po ./$(DEPDIR)/nife.Po ./$(DEPDIR)/scs.Po \ | |||||
./$(DEPDIR)/stackC.Po ./$(DEPDIR)/stackF.Po \ | |||||
./$(DEPDIR)/stackL.Po ./$(DEPDIR)/stackN.Po \ | |||||
./$(DEPDIR)/stackV.Po ./$(DEPDIR)/tasks.Po | |||||
am__mv = mv -f | am__mv = mv -f | ||||
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_@AM_V@) | |||||
am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) | |||||
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_@AM_V@) | |||||
am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) | |||||
am__v_CCLD_0 = @echo " CCLD " $@; | |||||
am__v_CCLD_1 = | |||||
SOURCES = $(nife_SOURCES) | SOURCES = $(nife_SOURCES) | ||||
DIST_SOURCES = $(nife_SOURCES) | DIST_SOURCES = $(nife_SOURCES) | ||||
am__can_run_installinfo = \ | am__can_run_installinfo = \ | ||||
@@ -90,11 +156,30 @@ am__can_run_installinfo = \ | |||||
n|no|NO) false;; \ | n|no|NO) false;; \ | ||||
*) (install-info --version) >/dev/null 2>&1;; \ | *) (install-info --version) >/dev/null 2>&1;; \ | ||||
esac | 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 | ||||
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp | |||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) | DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) | ||||
ACLOCAL = @ACLOCAL@ | ACLOCAL = @ACLOCAL@ | ||||
AMTAR = @AMTAR@ | AMTAR = @AMTAR@ | ||||
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ | |||||
AUTOCONF = @AUTOCONF@ | AUTOCONF = @AUTOCONF@ | ||||
AUTOHEADER = @AUTOHEADER@ | AUTOHEADER = @AUTOHEADER@ | ||||
AUTOMAKE = @AUTOMAKE@ | AUTOMAKE = @AUTOMAKE@ | ||||
@@ -172,6 +257,7 @@ pdfdir = @pdfdir@ | |||||
prefix = @prefix@ | prefix = @prefix@ | ||||
program_transform_name = @program_transform_name@ | program_transform_name = @program_transform_name@ | ||||
psdir = @psdir@ | psdir = @psdir@ | ||||
runstatedir = @runstatedir@ | |||||
sbindir = @sbindir@ | sbindir = @sbindir@ | ||||
sharedstatedir = @sharedstatedir@ | sharedstatedir = @sharedstatedir@ | ||||
srcdir = @srcdir@ | srcdir = @srcdir@ | ||||
@@ -218,14 +304,13 @@ $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) | |||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/Makefile'; \ | echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/Makefile'; \ | ||||
$(am__cd) $(top_srcdir) && \ | $(am__cd) $(top_srcdir) && \ | ||||
$(AUTOMAKE) --gnu src/Makefile | $(AUTOMAKE) --gnu src/Makefile | ||||
.PRECIOUS: Makefile | |||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status | Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status | ||||
@case '$?' in \ | @case '$?' in \ | ||||
*config.status*) \ | *config.status*) \ | ||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ | cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ | ||||
*) \ | *) \ | ||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ | |||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ | |||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ | |||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ | |||||
esac; | esac; | ||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) | $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) | ||||
@@ -245,10 +330,11 @@ install-binPROGRAMS: $(bin_PROGRAMS) | |||||
fi; \ | fi; \ | ||||
for p in $$list; do echo "$$p $$p"; done | \ | for p in $$list; do echo "$$p $$p"; done | \ | ||||
sed 's/$(EXEEXT)$$//' | \ | sed 's/$(EXEEXT)$$//' | \ | ||||
while read p p1; do if test -f $$p; \ | |||||
then echo "$$p"; echo "$$p"; else :; fi; \ | |||||
while read p p1; do if test -f $$p \ | |||||
; then echo "$$p"; echo "$$p"; else :; fi; \ | |||||
done | \ | done | \ | ||||
sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ | |||||
sed -e 'p;s,.*/,,;n;h' \ | |||||
-e 's|.*|.|' \ | |||||
-e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ | -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ | ||||
sed 'N;N;N;s,\n, ,g' | \ | sed 'N;N;N;s,\n, ,g' | \ | ||||
$(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ | $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ | ||||
@@ -269,16 +355,18 @@ uninstall-binPROGRAMS: | |||||
@list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ | @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ | ||||
files=`for p in $$list; do echo "$$p"; done | \ | files=`for p in $$list; do echo "$$p"; done | \ | ||||
sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ | sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ | ||||
-e 's/$$/$(EXEEXT)/' `; \ | |||||
-e 's/$$/$(EXEEXT)/' \ | |||||
`; \ | |||||
test -n "$$list" || exit 0; \ | test -n "$$list" || exit 0; \ | ||||
echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ | echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ | ||||
cd "$(DESTDIR)$(bindir)" && rm -f $$files | cd "$(DESTDIR)$(bindir)" && rm -f $$files | ||||
clean-binPROGRAMS: | clean-binPROGRAMS: | ||||
-test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS) | -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS) | ||||
nife$(EXEEXT): $(nife_OBJECTS) $(nife_DEPENDENCIES) $(EXTRA_nife_DEPENDENCIES) | nife$(EXEEXT): $(nife_OBJECTS) $(nife_DEPENDENCIES) $(EXTRA_nife_DEPENDENCIES) | ||||
@rm -f nife$(EXEEXT) | @rm -f nife$(EXEEXT) | ||||
$(LINK) $(nife_OBJECTS) $(nife_LDADD) $(LIBS) | |||||
$(AM_V_CCLD)$(LINK) $(nife_OBJECTS) $(nife_LDADD) $(LIBS) | |||||
mostlyclean-compile: | mostlyclean-compile: | ||||
-rm -f *.$(OBJEXT) | -rm -f *.$(OBJEXT) | ||||
@@ -286,62 +374,57 @@ mostlyclean-compile: | |||||
distclean-compile: | distclean-compile: | ||||
-rm -f *.tab.c | -rm -f *.tab.c | ||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/debug.Po@am__quote@ | |||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dev.Po@am__quote@ | |||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/err.Po@am__quote@ | |||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/foncs.Po@am__quote@ | |||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gplot.Po@am__quote@ | |||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/help.Po@am__quote@ | |||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/histo.Po@am__quote@ | |||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/i2c.Po@am__quote@ | |||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lib.Po@am__quote@ | |||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmath.Po@am__quote@ | |||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmathc99.Po@am__quote@ | |||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mth.Po@am__quote@ | |||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/net.Po@am__quote@ | |||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nife.Po@am__quote@ | |||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/scs.Po@am__quote@ | |||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/stackC.Po@am__quote@ | |||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/stackF.Po@am__quote@ | |||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/stackL.Po@am__quote@ | |||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/stackN.Po@am__quote@ | |||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/stackV.Po@am__quote@ | |||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tasks.Po@am__quote@ | |||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/debug.Po@am__quote@ # am--include-marker | |||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dev.Po@am__quote@ # am--include-marker | |||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/err.Po@am__quote@ # am--include-marker | |||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/foncs.Po@am__quote@ # am--include-marker | |||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gplot.Po@am__quote@ # am--include-marker | |||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/help.Po@am__quote@ # am--include-marker | |||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/histo.Po@am__quote@ # am--include-marker | |||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/i2c.Po@am__quote@ # am--include-marker | |||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lib.Po@am__quote@ # am--include-marker | |||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmath.Po@am__quote@ # am--include-marker | |||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmathc99.Po@am__quote@ # am--include-marker | |||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mth.Po@am__quote@ # am--include-marker | |||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/net.Po@am__quote@ # am--include-marker | |||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nife.Po@am__quote@ # am--include-marker | |||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/scs.Po@am__quote@ # am--include-marker | |||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/stackC.Po@am__quote@ # am--include-marker | |||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/stackF.Po@am__quote@ # am--include-marker | |||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/stackL.Po@am__quote@ # am--include-marker | |||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/stackN.Po@am__quote@ # am--include-marker | |||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/stackV.Po@am__quote@ # am--include-marker | |||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tasks.Po@am__quote@ # am--include-marker | |||||
$(am__depfiles_remade): | |||||
@$(MKDIR_P) $(@D) | |||||
@echo '# dummy' >$@-t && $(am__mv) $@-t $@ | |||||
am--depfiles: $(am__depfiles_remade) | |||||
.c.o: | .c.o: | ||||
@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< | |||||
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po | |||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ | |||||
@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< | |||||
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po | |||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ | |||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | ||||
@am__fastdepCC_FALSE@ $(COMPILE) -c $< | |||||
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< | |||||
.c.obj: | .c.obj: | ||||
@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` | |||||
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po | |||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ | |||||
@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` | |||||
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po | |||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ | |||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | ||||
@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` | |||||
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_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: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ | |||||
$(TAGS_FILES) $(LISP) | |||||
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` | |||||
ID: $(am__tagged_files) | |||||
$(am__define_uniq_tagged_files); mkid -fID $$unique | |||||
tags: tags-am | |||||
TAGS: tags | |||||
tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) | |||||
set x; \ | set x; \ | ||||
here=`pwd`; \ | here=`pwd`; \ | ||||
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; }; }'`; \ | |||||
$(am__define_uniq_tagged_files); \ | |||||
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; \ | ||||
@@ -353,15 +436,11 @@ TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ | |||||
$$unique; \ | $$unique; \ | ||||
fi; \ | fi; \ | ||||
fi | fi | ||||
ctags: CTAGS | |||||
CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ | |||||
$(TAGS_FILES) $(LISP) | |||||
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; }; }'`; \ | |||||
ctags: ctags-am | |||||
CTAGS: ctags | |||||
ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) | |||||
$(am__define_uniq_tagged_files); \ | |||||
test -z "$(CTAGS_ARGS)$$unique" \ | test -z "$(CTAGS_ARGS)$$unique" \ | ||||
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ | || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ | ||||
$$unique | $$unique | ||||
@@ -370,11 +449,29 @@ 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 | ||||
distdir: $(DISTFILES) | |||||
distdir: $(BUILT_SOURCES) | |||||
$(MAKE) $(AM_MAKEFLAGS) distdir-am | |||||
distdir-am: $(DISTFILES) | |||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ | @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ | ||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ | topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ | ||||
list='$(DISTFILES)'; \ | list='$(DISTFILES)'; \ | ||||
@@ -446,7 +543,27 @@ clean: clean-am | |||||
clean-am: clean-binPROGRAMS clean-generic mostlyclean-am | clean-am: clean-binPROGRAMS clean-generic mostlyclean-am | ||||
distclean: distclean-am | distclean: distclean-am | ||||
-rm -rf ./$(DEPDIR) | |||||
-rm -f ./$(DEPDIR)/debug.Po | |||||
-rm -f ./$(DEPDIR)/dev.Po | |||||
-rm -f ./$(DEPDIR)/err.Po | |||||
-rm -f ./$(DEPDIR)/foncs.Po | |||||
-rm -f ./$(DEPDIR)/gplot.Po | |||||
-rm -f ./$(DEPDIR)/help.Po | |||||
-rm -f ./$(DEPDIR)/histo.Po | |||||
-rm -f ./$(DEPDIR)/i2c.Po | |||||
-rm -f ./$(DEPDIR)/lib.Po | |||||
-rm -f ./$(DEPDIR)/libmath.Po | |||||
-rm -f ./$(DEPDIR)/libmathc99.Po | |||||
-rm -f ./$(DEPDIR)/mth.Po | |||||
-rm -f ./$(DEPDIR)/net.Po | |||||
-rm -f ./$(DEPDIR)/nife.Po | |||||
-rm -f ./$(DEPDIR)/scs.Po | |||||
-rm -f ./$(DEPDIR)/stackC.Po | |||||
-rm -f ./$(DEPDIR)/stackF.Po | |||||
-rm -f ./$(DEPDIR)/stackL.Po | |||||
-rm -f ./$(DEPDIR)/stackN.Po | |||||
-rm -f ./$(DEPDIR)/stackV.Po | |||||
-rm -f ./$(DEPDIR)/tasks.Po | |||||
-rm -f Makefile | -rm -f Makefile | ||||
distclean-am: clean-am distclean-compile distclean-generic \ | distclean-am: clean-am distclean-compile distclean-generic \ | ||||
distclean-tags | distclean-tags | ||||
@@ -492,7 +609,27 @@ install-ps-am: | |||||
installcheck-am: | installcheck-am: | ||||
maintainer-clean: maintainer-clean-am | maintainer-clean: maintainer-clean-am | ||||
-rm -rf ./$(DEPDIR) | |||||
-rm -f ./$(DEPDIR)/debug.Po | |||||
-rm -f ./$(DEPDIR)/dev.Po | |||||
-rm -f ./$(DEPDIR)/err.Po | |||||
-rm -f ./$(DEPDIR)/foncs.Po | |||||
-rm -f ./$(DEPDIR)/gplot.Po | |||||
-rm -f ./$(DEPDIR)/help.Po | |||||
-rm -f ./$(DEPDIR)/histo.Po | |||||
-rm -f ./$(DEPDIR)/i2c.Po | |||||
-rm -f ./$(DEPDIR)/lib.Po | |||||
-rm -f ./$(DEPDIR)/libmath.Po | |||||
-rm -f ./$(DEPDIR)/libmathc99.Po | |||||
-rm -f ./$(DEPDIR)/mth.Po | |||||
-rm -f ./$(DEPDIR)/net.Po | |||||
-rm -f ./$(DEPDIR)/nife.Po | |||||
-rm -f ./$(DEPDIR)/scs.Po | |||||
-rm -f ./$(DEPDIR)/stackC.Po | |||||
-rm -f ./$(DEPDIR)/stackF.Po | |||||
-rm -f ./$(DEPDIR)/stackL.Po | |||||
-rm -f ./$(DEPDIR)/stackN.Po | |||||
-rm -f ./$(DEPDIR)/stackV.Po | |||||
-rm -f ./$(DEPDIR)/tasks.Po | |||||
-rm -f Makefile | -rm -f Makefile | ||||
maintainer-clean-am: distclean-am maintainer-clean-generic | maintainer-clean-am: distclean-am maintainer-clean-generic | ||||
@@ -512,18 +649,21 @@ uninstall-am: uninstall-binPROGRAMS | |||||
.MAKE: install-am install-strip | .MAKE: install-am install-strip | ||||
.PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \ | |||||
clean-generic ctags distclean distclean-compile \ | |||||
distclean-generic distclean-tags distdir dvi dvi-am html \ | |||||
html-am info info-am install install-am install-binPROGRAMS \ | |||||
install-data install-data-am install-dvi install-dvi-am \ | |||||
install-exec install-exec-am install-html install-html-am \ | |||||
install-info install-info-am install-man install-pdf \ | |||||
install-pdf-am install-ps install-ps-am install-strip \ | |||||
installcheck installcheck-am installdirs maintainer-clean \ | |||||
maintainer-clean-generic mostlyclean mostlyclean-compile \ | |||||
mostlyclean-generic pdf pdf-am ps ps-am tags uninstall \ | |||||
uninstall-am uninstall-binPROGRAMS | |||||
.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \ | |||||
clean-binPROGRAMS clean-generic cscopelist-am ctags ctags-am \ | |||||
distclean distclean-compile distclean-generic distclean-tags \ | |||||
distdir dvi dvi-am html html-am info info-am install \ | |||||
install-am install-binPROGRAMS install-data install-data-am \ | |||||
install-dvi install-dvi-am install-exec install-exec-am \ | |||||
install-html install-html-am install-info install-info-am \ | |||||
install-man install-pdf install-pdf-am install-ps \ | |||||
install-ps-am install-strip installcheck installcheck-am \ | |||||
installdirs maintainer-clean maintainer-clean-generic \ | |||||
mostlyclean mostlyclean-compile mostlyclean-generic pdf pdf-am \ | |||||
ps ps-am tags tags-am uninstall uninstall-am \ | |||||
uninstall-binPROGRAMS | |||||
.PRECIOUS: Makefile | |||||
# nife_LDADD = libm.a | # nife_LDADD = libm.a | ||||
@@ -1,4 +1,4 @@ | |||||
/* Copyright (C) 2011-2019 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
/* Copyright (C) 2011-2022 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
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 | ||||
@@ -20,7 +20,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/> | |||||
#ifdef HAVE_CONFIG_H | #ifdef HAVE_CONFIG_H | ||||
#include "../config.h" | #include "../config.h" | ||||
#else | #else | ||||
#define VERSION "0.60" | |||||
#define VERSION "0.61" | |||||
#endif | #endif | ||||
#ifdef HAVE_COMEDILIB_H | #ifdef HAVE_COMEDILIB_H | ||||
@@ -1,4 +1,4 @@ | |||||
/* Copyright (C) 2011-2019 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
/* Copyright (C) 2011-2022 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
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 | ||||
@@ -1,4 +1,4 @@ | |||||
/* Copyright (C) 2011-2019 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
/* Copyright (C) 2011-2022 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
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 | ||||
@@ -14,6 +14,7 @@ You should have received a copy of the GNU General Public License | |||||
along with this program. If not, see <http://www.gnu.org/licenses/> | along with this program. If not, see <http://www.gnu.org/licenses/> | ||||
*******************************************************************/ | *******************************************************************/ | ||||
/* debug.h */ | /* debug.h */ | ||||
#include <unistd.h> | |||||
#ifndef __NIFE_DEBUG_H__ | #ifndef __NIFE_DEBUG_H__ | ||||
#define __NIFE_DEBUG_H__ | #define __NIFE_DEBUG_H__ | ||||
@@ -1,4 +1,4 @@ | |||||
/* Copyright (C) 2011-2019 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
/* Copyright (C) 2011-2022 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
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 | ||||
@@ -1,4 +1,4 @@ | |||||
/* Copyright (C) 2011-2019 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
/* Copyright (C) 2011-2022 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
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 | ||||
@@ -1,4 +1,4 @@ | |||||
/* Copyright (C) 2011-2019 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
/* Copyright (C) 2011-2022 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
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 | ||||
@@ -134,7 +134,7 @@ void stopErr(char *M, char *F) | |||||
exit(1); | exit(1); | ||||
} | } | ||||
static ErrPrintf(char *M) | |||||
static void ErrPrintf(char *M) | |||||
{ | { | ||||
printf(M); | printf(M); | ||||
if (InDebugFct==0) fprintf(stderr,M); | if (InDebugFct==0) fprintf(stderr,M); | ||||
@@ -1,4 +1,4 @@ | |||||
/* Copyright (C) 2011-2019 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
/* Copyright (C) 2011-2022 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
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 | ||||
@@ -1,4 +1,4 @@ | |||||
/* Copyright (C) 2011-2019 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
/* Copyright (C) 2011-2022 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
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 | ||||
@@ -1,4 +1,4 @@ | |||||
/* Copyright (C) 2011-2019 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
/* Copyright (C) 2011-2022 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
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 | ||||
@@ -1,4 +1,4 @@ | |||||
/* Copyright (C) 2011-2019 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
/* Copyright (C) 2011-2022 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
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 | ||||
@@ -1,4 +1,4 @@ | |||||
/* Copyright (C) 2011-2019 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
/* Copyright (C) 2011-2022 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
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 | ||||
@@ -1,4 +1,4 @@ | |||||
/* Copyright (C) 2011-2019 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
/* Copyright (C) 2011-2022 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
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 | ||||
@@ -1,4 +1,4 @@ | |||||
/* Copyright (C) 2011-2019 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
/* Copyright (C) 2011-2022 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
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 | ||||
@@ -1,4 +1,4 @@ | |||||
/* Copyright (C) 2011-2019 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
/* Copyright (C) 2011-2022 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
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 | ||||
@@ -1,4 +1,4 @@ | |||||
/* Copyright (C) 2011-2019 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
/* Copyright (C) 2011-2022 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
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 | ||||
@@ -1,4 +1,4 @@ | |||||
/* Copyright (C) 2011-2019 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
/* Copyright (C) 2011-2022 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
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 | ||||
@@ -29,6 +29,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/> | |||||
#include <stdio.h> | #include <stdio.h> | ||||
#include <stdlib.h> | #include <stdlib.h> | ||||
#include <string.h> | #include <string.h> | ||||
#include <unistd.h> | |||||
#ifdef _WITH_I2C | #ifdef _WITH_I2C | ||||
/* | /* | ||||
@@ -1,4 +1,4 @@ | |||||
/* Copyright (C) 2011-2019 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
/* Copyright (C) 2011-2022 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
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 | ||||
@@ -1,4 +1,4 @@ | |||||
/* Copyright (C) 2011-2019 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
/* Copyright (C) 2011-2022 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
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 | ||||
@@ -1,4 +1,4 @@ | |||||
/* Copyright (C) 2011-2019 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
/* Copyright (C) 2011-2022 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
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 | ||||
@@ -1,4 +1,4 @@ | |||||
/* Copyright (C) 2011-2019 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
/* Copyright (C) 2011-2022 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
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 | ||||
@@ -21,6 +21,9 @@ along with this program. If not, see <http://www.gnu.org/licenses/> | |||||
#include <inttypes.h> | #include <inttypes.h> | ||||
#include <math.h> | #include <math.h> | ||||
#include "stackN.h" | #include "stackN.h" | ||||
#ifndef HUGE | |||||
#define HUGE 3.40282347e+38F | |||||
#endif | |||||
static double inv(double a) | static double inv(double a) | ||||
{ | { | ||||
@@ -1,4 +1,4 @@ | |||||
/* Copyright (C) 2011-2019 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
/* Copyright (C) 2011-2022 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
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 | ||||
@@ -1,4 +1,4 @@ | |||||
/* Copyright (C) 2011-2019 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
/* Copyright (C) 2011-2022 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
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 | ||||
@@ -1,4 +1,4 @@ | |||||
/* Copyright (C) 2011-2019 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
/* Copyright (C) 2011-2022 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
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 | ||||
@@ -1,4 +1,4 @@ | |||||
/* Copyright (C) 2011-2019 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
/* Copyright (C) 2011-2022 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
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 | ||||
@@ -1,4 +1,4 @@ | |||||
/* Copyright (C) 2011-2019 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
/* Copyright (C) 2011-2022 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
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 | ||||
@@ -1,4 +1,4 @@ | |||||
/* Copyright (C) 2011-2019 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
/* Copyright (C) 2011-2022 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
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 | ||||
@@ -1,4 +1,4 @@ | |||||
/* Copyright (C) 2011-2019 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
/* Copyright (C) 2011-2022 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
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 | ||||
@@ -27,16 +27,20 @@ along with this program. If not, see <http://www.gnu.org/licenses/> | |||||
#include <unistd.h> | #include <unistd.h> | ||||
#include "nife.h" | #include "nife.h" | ||||
#include "foncs.h" | |||||
#include "mth.h" | #include "mth.h" | ||||
#include "err.h" | #include "err.h" | ||||
#include "lib.h" | #include "lib.h" | ||||
#include "stackC.h" | #include "stackC.h" | ||||
#include "stackV.h" | #include "stackV.h" | ||||
#include "stackN.h" | |||||
#include "stackL.h" | |||||
#include "stackF.h" | #include "stackF.h" | ||||
#include "histo.h" | #include "histo.h" | ||||
#include "tasks.h" | #include "tasks.h" | ||||
#include "debug.h" | #include "debug.h" | ||||
#include "help.h" | #include "help.h" | ||||
#include "scs.h" | |||||
#include "net.h" | #include "net.h" | ||||
#include "gplot.h" | #include "gplot.h" | ||||
@@ -1,4 +1,4 @@ | |||||
/* Copyright (C) 2011-2019 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
/* Copyright (C) 2011-2022 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
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 | ||||
@@ -1,4 +1,4 @@ | |||||
/* Copyright (C) 2011-2019 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
/* Copyright (C) 2011-2022 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
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 | ||||
@@ -1,4 +1,4 @@ | |||||
/* Copyright (C) 2011-2019 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
/* Copyright (C) 2011-2022 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
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 | ||||
@@ -1,4 +1,4 @@ | |||||
/* Copyright (C) 2011-2019 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
/* Copyright (C) 2011-2022 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
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 | ||||
@@ -1,4 +1,4 @@ | |||||
/* Copyright (C) 2011-2019 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
/* Copyright (C) 2011-2022 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
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 | ||||
@@ -1,4 +1,4 @@ | |||||
/* Copyright (C) 2011-2019 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
/* Copyright (C) 2011-2022 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
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 | ||||
@@ -1,4 +1,4 @@ | |||||
/* Copyright (C) 2011-2019 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
/* Copyright (C) 2011-2022 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
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 | ||||
@@ -120,7 +120,7 @@ extern void IF_EXEK(void); | |||||
extern void IF_debBackC(void); | extern void IF_debBackC(void); | ||||
extern void IF_debBackC1(void); | extern void IF_debBackC1(void); | ||||
extern void dump_stackV(int fd); | |||||
extern void restore_stackV(int fd); | |||||
extern void dump_stackF(int fd); | |||||
extern void restore_stackF(int fd); | |||||
#endif | #endif |
@@ -1,4 +1,4 @@ | |||||
/* Copyright (C) 2011-2019 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
/* Copyright (C) 2011-2022 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
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 | ||||
@@ -1,4 +1,4 @@ | |||||
/* Copyright (C) 2011-2019 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
/* Copyright (C) 2011-2022 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
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 | ||||
@@ -1,4 +1,4 @@ | |||||
/* Copyright (C) 2011-2019 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
/* Copyright (C) 2011-2022 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
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 | ||||
@@ -340,7 +340,7 @@ void IF_stack_clear(void) | |||||
while (StackN != VIDE) dropElt(); | while (StackN != VIDE) dropElt(); | ||||
} | } | ||||
static printLL(char * F, long long l) | |||||
static void printLL(char * F, long long l) | |||||
{ | { | ||||
char c, buf[68]; | char c, buf[68]; | ||||
unsigned long long v; | unsigned long long v; | ||||
@@ -1,4 +1,4 @@ | |||||
/* Copyright (C) 2011-2019 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
/* Copyright (C) 2011-2022 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
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 | ||||
@@ -1,4 +1,4 @@ | |||||
/* Copyright (C) 2011-2019 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
/* Copyright (C) 2011-2022 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
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 | ||||
@@ -1,4 +1,4 @@ | |||||
/* Copyright (C) 2011-2019 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
/* Copyright (C) 2011-2022 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
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 | ||||
@@ -1,4 +1,4 @@ | |||||
/* Copyright (C) 2011-2019 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
/* Copyright (C) 2011-2022 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
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 | ||||
@@ -1,4 +1,4 @@ | |||||
/* Copyright (C) 2011-2019 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
/* Copyright (C) 2011-2022 Patrick H. E. Foubet - S.E.R.I.A.N.E. | |||||
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 | ||||