aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Stoelp <johannes.stoelp@gmail.com>2023-10-30 23:05:26 +0100
committerJohannes Stoelp <johannes.stoelp@gmail.com>2023-10-30 23:05:26 +0100
commitccaae5eb310ae8aabd77f8fe53f181f4afe0365b (patch)
tree219e63cadf2df59bc492bfc0cf0e85c7d9614573
parent2960673d1f900e1fcd02aa7d70acee5965612092 (diff)
downloadsysc-playground-ccaae5eb310ae8aabd77f8fe53f181f4afe0365b.tar.gz
sysc-playground-ccaae5eb310ae8aabd77f8fe53f181f4afe0365b.zip
make: fix fmt target
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index c6c3cbb..92959c0 100644
--- a/Makefile
+++ b/Makefile
@@ -54,7 +54,7 @@ systemc:
# -- UTIL ----------------------------------------------------------------------
fmt:
- clang-format -i $(shell find src test -type f)
+ clang-format -i $(shell find src test -type f -name \*.h -or -name \*.cc)
# -- CLEAN ---------------------------------------------------------------------