X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=Makefile.am;h=0faed67952b688659c650a75d522286b7a75a804;hb=38b7a52b618b98f03f089d0dff4050ec76fd06d4;hp=08ccb8d6a61c4cab6eeccb7d85ad9b4dd92614ce;hpb=13465541ef305d28a665ff01550dd2dbc0985669;p=sliver-openvswitch.git diff --git a/Makefile.am b/Makefile.am index 08ccb8d6a..0faed6795 100644 --- a/Makefile.am +++ b/Makefile.am @@ -93,7 +93,7 @@ MAN_FRAGMENTS = MAN_ROOTS = noinst_DATA = noinst_HEADERS = -noinst_LIBRARIES = +lib_LTLIBRARIES = noinst_man_MANS = noinst_PROGRAMS = noinst_SCRIPTS = @@ -195,6 +195,19 @@ config-h-check: fi .PHONY: config-h-check +# Check for printf() type modifiers that MSVC doesn't support. +ALL_LOCAL += printf-check +printf-check: + @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1 && \ + git --no-pager grep -n -E -e '%[-+ #0-9.*]*([ztj]|hh)' --and --not -e 'ovs_scan' `git ls-files $(srcdir) | grep '\.[ch]$$'`; \ + then \ + echo "See above for list of violations of the rule that"; \ + echo "'z', 't', 'j', 'hh' printf() type modifiers are"; \ + echo "forbidden. See CodingStyle for replacements."; \ + exit 1; \ + fi +.PHONY: printf-check + # Check that certain data structures are always declared "static". ALL_LOCAL += static-check static-check: @@ -270,6 +283,7 @@ if LINUX_ENABLED cd datapath/linux && $(MAKE) modules_install endif +include m4/automake.mk include lib/automake.mk include ofproto/automake.mk include utilities/automake.mk