X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=Makefile.am;h=50c4b14283781d5efdae2a84a32db228a0e25bcb;hb=b4e1bf8b7ef8704d857a9ee93d40719289b2139e;hp=115162de53daff510bce0ef0dcf9baf0b6411f8e;hpb=98f61d42eb78c49ad423fb9de5dc323a4e0c1b59;p=sliver-openvswitch.git diff --git a/Makefile.am b/Makefile.am index 115162de5..50c4b1428 100644 --- a/Makefile.am +++ b/Makefile.am @@ -133,6 +133,11 @@ CLEAN_LOCAL += clean-pycov # If we're checked out from a Git repository, make sure that every # file that is in Git is distributed. +# +# We only enable this check when GNU make is in use because the +# Makefile in datapath/linux, needed to get the list of files to +# distribute, requires GNU make extensions. +if GNU_MAKE ALL_LOCAL += dist-hook-git dist-hook-git: distfiles @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1; then \ @@ -158,6 +163,8 @@ distfiles: Makefile sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t" | sort -u > $@ CLEANFILES += distfiles +endif +.PHONY: dist-hook-git # Check that "struct vlog_ratelimit" is always declared "static". ALL_LOCAL += rate-limit-check @@ -169,6 +176,7 @@ rate-limit-check: echo "'struct vlog_rate_limit' must always be 'static'"; \ exit 1; \ fi +.PHONY: rate-limit-check if HAVE_GROFF ALL_LOCAL += manpage-check