diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2023-05-01 22:18:32 +0300 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2023-05-01 22:18:32 +0300 |
| commit | 79f67d5ca820b663e9e5682aaaad07118fdbfad8 (patch) | |
| tree | a6f8b61c4ffbd2b5ce973dd7d9f1d6ddb3f58d8c /Makefile | |
| parent | d133cc70b125efc1d6c992cb49ce1bca41cf580e (diff) | |
| download | gran-79f67d5ca820b663e9e5682aaaad07118fdbfad8.tar.gz gran-79f67d5ca820b663e9e5682aaaad07118fdbfad8.zip | |
update license stuff
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 16 |
1 files changed, 7 insertions, 9 deletions
@@ -36,20 +36,18 @@ lint: $(OBJS:.o=.o.l) .PHONY: format format: - @cd src; find . -iname '*.[ch]' |\ - xargs -n 10 -P 0 uncrustify -c ../uncrustify.conf --no-backup -F - - @cd include; find . -iname '*.[ch]' |\ - xargs -n 10 -P 0 uncrustify -c ../uncrustify.conf --no-backup -F - + 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: $(TEST_PROGS) @@ -60,11 +58,11 @@ gran: $(MAIN_OBJ) $(OBJS) .PHONY: clean clean: - @$(RM) -r build gran deps.mk + $(RM) -r build gran deps.mk .PHONY: clean_docs clean_docs: - @$(RM) -r docs/output + $(RM) -r docs/output .PHONY: clean_all clean_all: clean clean_docs |
