X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=Makefile.am;h=b15a9a4d375b217c9faa367627c04dc39d429de6;hb=a39c3ff9f586d3416976d3c3bd095fa81d73efa0;hp=2c196184b91bf9734ad20ffa8e312a75af3aa4b2;hpb=85b20fd6ee585f462e012fbcc7f966a81edab2ed;p=sliver-openvswitch.git diff --git a/Makefile.am b/Makefile.am index 2c196184b..b15a9a4d3 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,4 +1,4 @@ -# Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012 Nicira, Inc. +# Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012, 2013 Nicira, Inc. # # Copying and distribution of this file, with or without modification, # are permitted in any medium without royalty provided the copyright @@ -56,6 +56,7 @@ EXTRA_DIST = \ OPENFLOW-1.1+ \ PORTING \ README-gcov \ + README-lisp \ REPORTING-BUGS \ SubmittingPatches \ WHY-OVS \ @@ -196,6 +197,19 @@ rate-limit-check: fi .PHONY: rate-limit-check +# Check that assert.h is not used outside a whitelist of files. +ALL_LOCAL += check-assert-h-usage +check-assert-h-usage: + @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1 && \ + (cd $(srcdir) && git --no-pager grep -l -E '[<]assert.h[>]') | \ + $(EGREP) -v '^lib/(sflow_receiver|vlog|worker).c$$|^tests/'; \ + then \ + echo "Files listed above unexpectedly #include <""assert.h"">."; \ + echo "Please use ovs_assert (from util.h) instead of assert."; \ + exit 1; \ + fi +.PHONY: check-assert-h-usage + if HAVE_GROFF ALL_LOCAL += manpage-check manpage-check: $(man_MANS) $(dist_man_MANS) $(noinst_man_MANS) @@ -246,3 +260,4 @@ include xenserver/automake.mk include python/automake.mk include python/compat/automake.mk include planetlab/automake.mk +include tutorial/automake.mk