OSDN Git Service

build: update gnulib submodule to latest
[android-x86/external-parted.git] / Makefile.am
index 1aba177..39c1d01 100644 (file)
@@ -2,6 +2,7 @@ ACLOCAL_AMFLAGS = -I m4
 SUBDIRS = po lib libparted parted partprobe include doc debug tests
 
 EXTRA_DIST =                           \
+  .version                             \
   .prev-version                                \
   BUGS                                 \
   libparted.pc.in                      \
@@ -9,8 +10,9 @@ EXTRA_DIST =                           \
   parted.spec                          \
   scripts/data/abi/baseline_symbols.txt \
   scripts/extract_symvers              \
-  Makefile.cfg                         \
-  Makefile.maint                       \
+  cfg.mk                               \
+  dist-check.mk                                \
+  maint.mk                             \
   GNUmakefile
 
 aclocaldir=$(datadir)/aclocal
@@ -26,7 +28,15 @@ parted.spec: parted.spec.in
        mv $@-tmp $@
 MAINTAINERCLEANFILES = parted.spec
 
-distcheck-hook:
+.PHONY: root-check
+root-check:
+       sudo $(MAKE) check
+
+# Not everyone who runs "make distcheck" will want to or even
+# be able to run the root tests.  If you want to skip them,
+# run make like this: "make distcheck root-check="
+root-check ?= root-check
+distcheck-hook: $(root-check)
        $(MAKE) my-distcheck
 
 ### ABI Checking scripts ###
@@ -59,10 +69,10 @@ new-abi-baseline:
 # 'check-abi' to test for changes against that file.
 check-abi: baseline_symbols current_symbols.txt
        @diff -u ${baseline_file} ./current_symbols.txt 2>&1 \
-         | tee libparted.abi-diff
-       @test `wc -l < libparted.abi-diff` -gt 0 \
-         && (echo "ABI has changed. Please, update you ABI package version."; exit 1) \
-         || exit 0
+        | tee libparted.abi-diff
+       @test `wc -l < libparted.abi-diff` -eq 0 && exit 0 \
+        || echo "ABI has changed. Please, update you ABI package version." \
+        && exit 1
 
 MOSTLYCLEANDIRS = m4
 
@@ -72,3 +82,36 @@ MAINTAINERCLEANFILES += \
   INSTALL       \
   aclocal.m4    \
   configure
+
+.PHONY: ss-1024 ss-2048 ss-4096
+ss-1024 ss-2048 ss-4096:
+       PARTED_SECTOR_SIZE=$(subst ss-,,$@) $(MAKE) check-recursive
+
+# Run the regression test suite with different settings,
+# to ensure it works with simulated partition sizes > 512.
+.PHONY: check-other-sector_sizes
+check-other-sector_sizes:
+       $(MAKE) ss-1024
+       $(MAKE) ss-2048
+       $(MAKE) ss-4096
+
+check: check-other-sector_sizes
+
+# Arrange so that .tarball-version appears only in the distribution
+# tarball, and never in a checked-out repository.
+dist-hook: gen-ChangeLog
+       echo $(VERSION) > $(distdir)/.tarball-version
+
+gen_start_date = 2000-01-01
+.PHONY: gen-ChangeLog
+gen-ChangeLog:
+       if test -d .git; then                                           \
+         $(top_srcdir)/build-aux/gitlog-to-changelog                   \
+           --since=$(gen_start_date) > $(distdir)/cl-t;                \
+         rm -f $(distdir)/ChangeLog;                                   \
+         mv $(distdir)/cl-t $(distdir)/ChangeLog;                      \
+       fi
+
+BUILT_SOURCES = .version
+.version:
+       echo $(VERSION) > $@-t && mv $@-t $@