diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-05-24 14:13:30 +0300 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-05-24 14:13:30 +0300 |
| commit | a10ac4e82a1f8324a2928fd08b0ba2d5558e50e4 (patch) | |
| tree | 6798d083e7f86a25c33a0e71eb3aa605470c3352 | |
| parent | 483fc8be776a95a810a89246f6811668f7c13191 (diff) | |
| download | tri-a10ac4e82a1f8324a2928fd08b0ba2d5558e50e4.tar.gz tri-a10ac4e82a1f8324a2928fd08b0ba2d5558e50e4.zip | |
fix makefile in triscv
| -rw-r--r-- | triscv/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/triscv/Makefile b/triscv/Makefile index b0ff07d..103a1a2 100644 --- a/triscv/Makefile +++ b/triscv/Makefile @@ -28,17 +28,17 @@ include src/source.mk .PHONY: format format: - find include src -iname '*.[ch]' |\ + find src include -iname '*.[ch]' |\ xargs uncrustify -c uncrustify.conf --no-backup -F - .PHONY: license license: - find include src -iname '*.[ch]' |\ + find src include -iname '*.[ch]' |\ xargs ./scripts/license .PHONY: docs docs: - find include src -iname '*.[ch]' -not -path */gen/* |\ + find src include -iname '*.[ch]' -not -path */gen/* |\ xargs ./scripts/warn-undocumented doxygen docs/doxygen.conf |
