diff options
author | Johannes Stoelp <johannes.stoelp@gmail.com> | 2023-10-30 23:05:26 +0100 |
---|---|---|
committer | Johannes Stoelp <johannes.stoelp@gmail.com> | 2023-10-30 23:05:26 +0100 |
commit | ccaae5eb310ae8aabd77f8fe53f181f4afe0365b (patch) | |
tree | 219e63cadf2df59bc492bfc0cf0e85c7d9614573 /Makefile | |
parent | 2960673d1f900e1fcd02aa7d70acee5965612092 (diff) | |
download | sysc-playground-ccaae5eb310ae8aabd77f8fe53f181f4afe0365b.tar.gz sysc-playground-ccaae5eb310ae8aabd77f8fe53f181f4afe0365b.zip |
make: fix fmt target
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 --------------------------------------------------------------------- |