diff options
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index a30f5d7..320fca8 100644 --- a/Makefile.in +++ b/Makefile.in @@ -303,6 +303,8 @@ o: ${OBJECTS} clean-deps: -$c find obj -name '*.d' -delete +clean-format: + -$c find obj -name '*.formatted' -delete clean-obj: -$c find obj -name '*.o' -delete clean-conf: @@ -473,6 +475,7 @@ obj/%.hpp.formatted: src/%.hpp tools/indenter if [[ $< == *fwd* ]]; then ! fgrep -q '"fwd.hpp"' $<; else ! fgrep -q ../sanity.hpp $<; fi grep -q '^namespace tmwa$$' $< grep -q '^} // namespace tmwa$$' $< + grep -q '^#pragma once$$' $< touch $@ obj/%.tcc.formatted: src/%.tcc tools/indenter $(MKDIR_FIRST) |