diff options
author | Johannes Stoelp <johannes.stoelp@gmail.com> | 2024-04-07 23:14:18 +0200 |
---|---|---|
committer | Johannes Stoelp <johannes.stoelp@gmail.com> | 2024-04-07 23:14:18 +0200 |
commit | 2b13efa7b78ab2bb08cba52e09b1f12af1701fd9 (patch) | |
tree | d2a2c51dcfe2e2db5fd25db3a77b96829141564b /Makefile | |
parent | dc8c474ec4460d07e42c97e5fc24af99ec5bf3e4 (diff) | |
download | cpp-templates-2b13efa7b78ab2bb08cba52e09b1f12af1701fd9.tar.gz cpp-templates-2b13efa7b78ab2bb08cba52e09b1f12af1701fd9.zip |
make: add make file and clang-{tidy,format} configs
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..16d98bb --- /dev/null +++ b/Makefile @@ -0,0 +1,26 @@ +SRC = $(shell git ls-files '*.cc') + +check: $(SRC:.cc=.x) +lint : $(SRC:.cc=.l) +fmt : $(SRC:.cc=.f) + +%.x: %.cc + bash $^ + +%.l: %.cc + clang-format -n --Werror $^ + clang-tidy $^ + +%.f: %.cc + clang-format -i $^ + +help: + @echo "Targets that apply to all .cc files under scm:" + @echo "* check execute build commands in each file" + @echo " lint clang-format & clang-tidy lint" + @echo " fmt re-format each file" + @echo "" + @echo "Targets that apply to a single .cc file (where <name> is the file name w/o .cc suffix):" + @echo " <name>.x only execute <name>.cc" + @echo " <name>.l only lint <name>.cc" + @echo " <name>.f only re-format <name>.cc" |