added support for saving residuals and predicted values
[pspp-builds.git] / Smake
diff --git a/Smake b/Smake
index 49a72f32ba21c8878bb94f83fbb30831e9e291f1..1eac214892e7425b58a7684b6d623c217d5d2049 100644 (file)
--- a/Smake
+++ b/Smake
@@ -10,6 +10,7 @@ GNULIB_MODULES = \
        assert \
        c-ctype \
        c-strtod \
+       exit \
        full-read \
        full-write \
        gethostname \
@@ -18,6 +19,7 @@ GNULIB_MODULES = \
        getopt \
        gettext \
        intprops \
+       linebreak \
        memcasecmp \
        memchr \
        memcmp \
@@ -30,11 +32,13 @@ GNULIB_MODULES = \
        snprintf \
        stat-macros \
        stdbool \
+       stdint \
        stpcpy \
        strcase \
        strcspn \
        strerror \
        strftime \
+       strsep \
        strstr \
        strtod \
        strtok_r \
@@ -63,7 +67,7 @@ gettextize:
 po/POTFILES.in:
        for f in `find src -name \*.[qc] ! -name .\* -print \
                  | sed 's/\.[qc]$$//'`; do \
-               if test $$f = src/libpspp/version.c; then break; fi;              \
+               if test $$f = src/libpspp/version; then continue; fi;     \
                if test -e $$f.q; then echo $$f.q; else echo $$f.c; fi    \
        done | sort | uniq > $@.tmp
        if test ! -e $@ || ! cmp -s $@.tmp $@; then mv $@.tmp $@; fi