From 077994c12a8ac31bc9d910741b64d2bb444b2655 Mon Sep 17 00:00:00 2001 From: Ben Longbons Date: Sat, 26 Apr 2014 16:10:50 -0700 Subject: Stricter grep checks --- Makefile.in | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Makefile.in') diff --git a/Makefile.in b/Makefile.in index c19fc1c..e2e3bca 100644 --- a/Makefile.in +++ b/Makefile.in @@ -459,17 +459,21 @@ obj/%.cpp.formatted: src/%.cpp tools/indenter $(MKDIR_FIRST) apply-filter 'indenter -cpp' $< fgrep -q Copyright $< + fgrep -q $(notdir $<) $< fgrep -q ../poison.hpp $< touch $@ obj/%.hpp.formatted: src/%.hpp tools/indenter $(MKDIR_FIRST) apply-filter 'indenter -cpp' $< fgrep -q Copyright $< + fgrep -q $(notdir $<) $< if [[ $< == *fwd* ]]; then fgrep -q ../sanity.hpp $<; else fgrep -q '"fwd.hpp"' $<; fi + if [[ $< == *fwd* ]]; then ! fgrep -q '"fwd.hpp"' $<; else ! fgrep -q ../sanity.hpp $<; fi touch $@ obj/%.tcc.formatted: src/%.tcc tools/indenter $(MKDIR_FIRST) apply-filter 'indenter -cpp' $< fgrep -q Copyright $< + fgrep -q $(notdir $<) $< touch $@ .PHONY: format format-cpp format-hpp -- cgit v1.2.3-60-g2f50