summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorBen Longbons <b.r.longbons@gmail.com>2014-04-09 16:51:51 -0700
committerBen Longbons <b.r.longbons@gmail.com>2014-04-09 18:16:28 -0700
commit313b592639aa6aaa342ca34b9b6a8a77a299621a (patch)
treeb1e193927e7158cee09c53a3c832ad5cddc6f609 /Makefile.in
parent312e4d37cc964bbc5bd4e20fd25500b08dc70268 (diff)
downloadtmwa-313b592639aa6aaa342ca34b9b6a8a77a299621a.tar.gz
tmwa-313b592639aa6aaa342ca34b9b6a8a77a299621a.tar.bz2
tmwa-313b592639aa6aaa342ca34b9b6a8a77a299621a.tar.xz
tmwa-313b592639aa6aaa342ca34b9b6a8a77a299621a.zip
Add all the missing copyright headers
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in7
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in
index 797d3b8..962eaaf 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -450,21 +450,28 @@ format-ypp: $(patsubst src/%,obj/%.formatted,${PARSERS})
obj/%.cpp.formatted: src/%.cpp tools/indenter
$(MKDIR_FIRST)
apply-filter 'indenter -cpp' $<
+ fgrep -q Copyright $<
+ fgrep -q ../poison.hpp $<
touch $@
obj/%.hpp.formatted: src/%.hpp tools/indenter
$(MKDIR_FIRST)
apply-filter 'indenter -cpp' $<
+ fgrep -q Copyright $<
+ fgrep -q ../sanity.hpp $<
touch $@
obj/%.tcc.formatted: src/%.tcc tools/indenter
$(MKDIR_FIRST)
apply-filter 'indenter -cpp' $<
+ fgrep -q Copyright $<
touch $@
obj/%.lpp.formatted: src/%.lpp tools/indenter
$(MKDIR_FIRST)
apply-filter 'indenter -lpp' $<
+ fgrep -q Copyright $<
touch $@
obj/%.ypp.formatted: src/%.ypp tools/indenter
$(MKDIR_FIRST)
apply-filter 'indenter -ypp' $<
+ fgrep -q Copyright $<
touch $@
.PHONY: format format-cpp format-hpp format-lpp format-ypp