From: Lukas Krickl Date: Tue, 29 Oct 2024 14:26:29 +0000 (+0100) Subject: Cleaning up tags command in makefile X-Git-Url: https://git.krickl.dev/?a=commitdiff_plain;h=381af432f6647acf515a12508f9a243f01def084;p=ulas%2F.git Cleaning up tags command in makefile --- diff --git a/makefile b/makefile index ef131bc..37a51a4 100644 --- a/makefile +++ b/makefile @@ -48,7 +48,7 @@ install: .PHONY: tags tags: - ctags --recurse=yes --exclude=.git --exclude=bin --exclude=obj --extras=* --fields=* --c-kinds=* --language-force=C . + ctags --recurse=yes --exclude=.git --extras=* --fields=* --c-kinds=* --language-force=C . .PHONY: ccmds ccmds: @@ -56,11 +56,11 @@ ccmds: .PHONY: format format: - clang-format -i src/*.c src/*.h + clang-format -i ./src/*.c ./src/*.h .PHONY: lint lint: - clang-tidy src/*.h src/*.c + clang-tidy ./src/*.h ./src/*.c buildtests: bin ./$(NAME) tests/t0.s -D ULAS_PREDEF -l - -o tests/t0.bin