Patrick Steinhardt [off-list ref] writes:
quoted
+git_clang_format = find_program('git-clang-format', required: false)
+if git_clang_format.found()
+ run_target('style',
+ command: [
+ 'git', 'clang-format',
+ '--style', 'file',
+ '--diff',
+ '--extensions', 'c,h'
+ ]
+ )
+endif
Do we want to call this target `clang-format-changed` though, so that it
is consistent with the implicit `clang-format` target?
It think this is trying to be consistent with the 'make style'
target.