aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2023-05-01 22:14:52 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2023-05-01 22:14:52 +0300
commitedeea202fb6297fc5ae749a91ac8f9fb67b59fae (patch)
tree01ed39a91664d3fff485de42d44647f4e4b7c24c /Makefile
parentb35787f4f2cf24e61b82f1eec6a5ff5eed4ba70b (diff)
downloadek-edeea202fb6297fc5ae749a91ac8f9fb67b59fae.tar.gz
ek-edeea202fb6297fc5ae749a91ac8f9fb67b59fae.zip
update license stuff
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 658cc4f..c878ec6 100644
--- a/Makefile
+++ b/Makefile
@@ -35,18 +35,18 @@ lint: $(OBJS:.o=.o.l)
.PHONY: format
format:
- @find src include tests -iname '*.[ch]' |\
+ find src include tests -iname '*.[ch]' |\
xargs -n 10 -P 0 uncrustify -c uncrustify.conf --no-backup -F -
.PHONY: license
license:
- @find . -iname '*.[ch]' |\
+ find src include tests -iname '*.[ch]' |\
xargs -n 10 -P 0 ./scripts/license
.PHONY: docs
docs:
- @./scripts/warn-undocumented
- @doxygen docs/doxygen.conf
+ ./scripts/warn-undocumented
+ doxygen docs/doxygen.conf
.PHONY: check
check: ek
@@ -57,11 +57,11 @@ ek: $(OBJS)
.PHONY: clean
clean:
- @$(RM) -r build ek deps.mk
+ $(RM) -r build ek deps.mk
.PHONY: clean_docs
clean_docs:
- @$(RM) -r docs/output
+ $(RM) -r docs/output
.PHONY: clean_all
clean_all: clean clean_docs