pivot table procedure conceptually works
[pspp] / Makefile.am
index 803ad08e2a01473ebb5db1ac4af6d0f727450859..3fc689fc6cba6d8c348e584d818768359c3a695a 100644 (file)
@@ -11,6 +11,8 @@ AM_CPPFLAGS = \
        -I$(top_builddir)/gl \
        -DINSTALLDIR=\"$(bindir)\"
 
+AM_V_P ?= :
+
 AM_CFLAGS=
 
 if cc_is_gcc
@@ -20,7 +22,7 @@ endif
 
 .q.c:
        @$(MKDIR_P) `dirname $@`
-       ./src/language/lexer/q2c$(EXEEXT_FOR_BUILD) $< $@
+       $(AM_V_GEN)./src/language/lexer/q2c$(EXEEXT_FOR_BUILD) $< $@
 
 $(all_q_sources:.q=.c): src/language/lexer/q2c$(EXEEXT_FOR_BUILD)
 all_q_sources =
@@ -28,7 +30,7 @@ all_q_sources =
 pkgsysconfdir = $(sysconfdir)/$(PACKAGE)
 
 
-EXTRA_DIST = OChangeLog ONEWS pspp-mode.el
+EXTRA_DIST = ONEWS pspp-mode.el
 
 CLEANFILES = 
 CLEAN_LOCAL =
@@ -116,9 +118,9 @@ ALL_LOCAL += dist-hook-git
 dist-hook-git: distfiles
        @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1; then \
          (cd $(srcdir) && git ls-files)                                    \
-           | grep -vE '\.gitignore|README.Git|Smake'                       \
-           | sort -u > gitfiles;                                           \
-         comm -1 -3 distfiles gitfiles > missing-distfiles;                \
+           | grep -vE '\.gitignore|README.Git|Smake'                       \
+           | LC_ALL=C sort -u > gitfiles;                                  \
+         LC_ALL=C comm -1 -3 distfiles gitfiles > missing-distfiles;       \
          if test -s missing-distfiles; then                                \
            echo "The distribution is missing the following files:";        \
            cat missing-distfiles;                                          \
@@ -132,6 +134,7 @@ distfiles: Makefile
        list='$(DISTFILES)'; \
        for file in $$list; do echo $$file; done | \
          sed -e "s|^$$srcdirstrip/||;t" \
-             -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t" | sort -u > $@
+             -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t" \
+         | LC_ALL=C sort -u > $@
 CLEANFILES += distfiles gitfiles missing-distfiles
 .PHONY: dist-hook-git