Add support for reading and writing SPV files.
[pspp] / Makefile.am
index aea415d15e2276b37c70b7b36e6480e693011341..725ee506240365b4764d1bb2ae7a17fa11f5e838 100644 (file)
@@ -11,6 +11,8 @@ AM_CPPFLAGS = \
        -I$(top_builddir)/gl \
        -DINSTALLDIR=\"$(bindir)\"
 
+AM_V_P ?= :
+
 AM_CFLAGS=
 
 if cc_is_gcc
@@ -56,8 +58,8 @@ noinst_HEADERS = $(EXTRA_DIST)
 
 generate-changelog:
        if test -d $(top_srcdir)/.git; then                     \
-         $(top_srcdir)/build-aux/gitlog-to-changelog --since=2008-07-27        \
-           > $(distdir)/cl-t;                                  \
+         $(top_srcdir)/build-aux/gitlog-to-changelog --since=2008-07-27  --srcdir=$(top_srcdir) \
+           > $(distdir)/cl-t || exit 1;                                        \
          rm -f $(distdir)/ChangeLog;                           \
          mv $(distdir)/cl-t $(distdir)/ChangeLog;              \
        fi
@@ -72,7 +74,6 @@ include $(top_srcdir)/doc/automake.mk
 include $(top_srcdir)/examples/automake.mk
 include $(top_srcdir)/src/automake.mk
 include $(top_srcdir)/utilities/automake.mk
-
 include $(top_srcdir)/tests/automake.mk
 
 if WITH_GUI_TOOLS
@@ -116,7 +117,7 @@ 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'                       \
+           | grep -vE '\.gitignore|README.Git|Smake|Bug-administration'    \
            | LC_ALL=C sort -u > gitfiles;                                  \
          LC_ALL=C comm -1 -3 distfiles gitfiles > missing-distfiles;       \
          if test -s missing-distfiles; then                                \
@@ -127,11 +128,11 @@ dist-hook-git: distfiles
        fi
 # The following is based on commands for the Automake "distdir" target.
 distfiles: Makefile
-       @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
-       topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
+       @srcdirstrip=`echo "$(srcdir)" | $(SED) 's/[].[^$$\\*]/\\\\&/g'`; \
+       topsrcdirstrip=`echo "$(top_srcdir)" | $(SED) 's/[].[^$$\\*]/\\\\&/g'`; \
        list='$(DISTFILES)'; \
        for file in $$list; do echo $$file; done | \
-         sed -e "s|^$$srcdirstrip/||;t" \
+         $(SED) -e "s|^$$srcdirstrip/||;t" \
              -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t" \
          | LC_ALL=C sort -u > $@
 CLEANFILES += distfiles gitfiles missing-distfiles