Smake: Use glibtoolize instead of libtoolize, if it is available.
[pspp] / Smake
diff --git a/Smake b/Smake
index 6e6b70235a2e7ef7d3c7af126642b8e2d398c10c..47821265bce4796e052d8fe2789939fc4e0e7b8e 100644 (file)
--- a/Smake
+++ b/Smake
@@ -7,15 +7,21 @@ GNULIB_TOOL = $(GNULIB)/gnulib-tool
 GNULIB_MODULES = \
        assert \
        byteswap \
+       c-snprintf \
+       c-strcase \
+       c-strcasestr \
        c-ctype \
        c-strtod \
+       c-xvasprintf \
        clean-temp \
        close \
        configmake \
        count-one-bits \
        crc \
        crypto/md4 \
+       crypto/md5 \
        dirname \
+       dtoastr \
        environ \
        fatal-signal \
        fcntl \
@@ -27,10 +33,11 @@ GNULIB_MODULES = \
         ftello \
        fwriteerror \
        getline \
-       gettext-h \
+       gettext \
        gettimeofday \
         getopt-gnu \
        gitlog-to-changelog \
+       include_next \
        isfinite \
        isinf \
        isnan \
@@ -38,42 +45,61 @@ GNULIB_MODULES = \
        inttostr \
        localcharset \
         mbchar \
+        mbiter \
        memcasecmp \
        memchr \
+       memchr2 \
        mempcpy \
+       memrchr \
        minmax \
        mkdtemp \
        mkstemp \
+       pipe2 \
        printf-posix \
        printf-safe \
        progname \
+       rawmemchr \
+       read-file \
        regex \
        relocatable-prog \
        rename \
        round \
+       select \
        snprintf \
        snprintf-posix \
        sprintf-posix \
        stdarg \
        stdbool \
        stdint \
+       strcasestr \
        stpcpy \
-       strcase \
        strerror \
        strftime \
        strtod \
        strtok_r \
-       strtol \
-       strtoul \
        sys_stat \
        tempname \
        trunc \
-       unilbrk/ulc-width-linebreaks \
+       unicase/u8-casecmp \
+       unicase/u8-casefold \
+       unicase/u8-tolower \
+       unicase/u8-toupper \
+       unictype/ctype-print \
+       unictype/category-of \
+       unigbrk/uc-is-grapheme-break \
+       unilbrk/u8-possible-linebreaks \
+       uninorm/nfkd \
        unistd \
+       unistr/u8-check \
        unistr/u8-cpy \
+       unistr/u8-mblen \
        unistr/u8-mbtouc \
+       unistr/u8-mbtoucr \
        unistr/u8-strlen \
+       unistr/u8-strmbtouc \
        unistr/u8-strncat \
+       unistr/u8-uctomb \
+       uniwidth/u8-strwidth \
        unitypes \
        unlocked-io \
        vasprintf-posix \
@@ -92,25 +118,39 @@ GNULIB_MODULES = \
        xstrndup \
        xvasprintf
 
-all: 
+all: prep_ph
+       $(MAKE) -f Smake Makefile.in configure
+
+.PHONY: prep_ph
+prep_ph: 
        test -e ChangeLog || touch ChangeLog
        test -d m4 || mkdir m4
        touch m4/Makefile.am
-       $(GNULIB_TOOL) --import --no-changelog --m4-base=gl/m4 \
+       $(GNULIB_TOOL) --add-import --no-changelog --m4-base=gl/m4 \
                --source-base=gl --lib=libgl --tests-base=tests \
-               --doc-base=gl/doc --aux-dir=build-aux --import \
+               --doc-base=gl/doc --aux-dir=build-aux  \
                --libtool $(GNULIB_MODULES)
-       libtoolize --force --automake
+       if (glibtoolize --version) >/dev/null 2>&1; then        \
+               LIBTOOLIZE=glibtoolize;                         \
+       elif (libtoolize --version) >/dev/null 2>&1; then       \
+               LIBTOOLIZE=libtoolize;                          \
+       else                                                    \
+               echo >&2 "libtoolize not found";                \
+               exit 1;                                         \
+       fi;                                                     \
+       $$LIBTOOLIZE --force --automake
+
+aclocal.m4:
        aclocal -I m4 -I gl/m4
+
+configure: configure.ac aclocal.m4
        autoconf
+
+config.h.in: configure.ac
        autoheader
-       automake --add-missing --copy --no-force
 
-gnulib:
-       $(GNULIB_TOOL) --add-import --no-changelog --m4-base=gl/m4 \
-               --source-base=gl --lib=libgl --tests-base=tests \
-               --doc-base=gl/doc --aux-dir=build-aux --import \
-               --libtool $(GNULIB_MODULES)
+Makefile.in: Makefile.am config.h.in aclocal.m4
+       automake --add-missing --copy --no-force --include-deps
 
 
 gettextize: