diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-05-24 13:24:27 +0300 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-05-24 18:13:43 +0300 |
| commit | bc600ecc3bdf0f189861dfb840f70c2339a7a853 (patch) | |
| tree | d9840b1dc1b865442a028c03ad7109ac67894f6e /Makefile | |
| parent | 6a7073e5f262db9a4578ff00b5b28e34335564ce (diff) | |
| download | kmi-bc600ecc3bdf0f189861dfb840f70c2339a7a853.tar.gz kmi-bc600ecc3bdf0f189861dfb840f70c2339a7a853.zip | |
rename common to src
+ I keep starting to type src and wondering why autocomplete won't work,
I guess src is just uncounciously a better name
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 12 |
1 files changed, 5 insertions, 7 deletions
@@ -25,10 +25,8 @@ setup: ARCH ?= riscv64 ARCH_SOURCE = arch/$(ARCH) -# might consider renaming common, currently it refers to stuff common -# to all arches but clearly there are bits that are common to init and kernel -KERNEL_SOURCES != echo common/*.c common/uapi/*.c lib/*.c -INIT_SOURCES != echo lib/fdt*.c common/fdt.c common/string.c +KERNEL_SOURCES != echo src/*.c src/uapi/*.c lib/*.c +INIT_SOURCES != echo lib/fdt*.c src/fdt.c src/string.c CLEANUP := build deps.mk kernel.* init.* kmi.bin CLEANUP_CMD := @@ -37,17 +35,17 @@ include arch/$(ARCH)/source.mk .PHONY: format format: - find arch lib common include -iname '*.[ch]' |\ + find arch lib src include -iname '*.[ch]' |\ xargs uncrustify -c uncrustify.conf --no-backup -F - .PHONY: license license: - find arch lib common include -iname '*.[ch]' |\ + find arch lib src include -iname '*.[ch]' |\ xargs ./scripts/license .PHONY: docs docs: - find arch lib common include -iname '*.[ch]' -not -path */gen/* |\ + find arch lib src include -iname '*.[ch]' -not -path */gen/* |\ xargs ./scripts/warn-undocumented doxygen docs/doxygen.conf |
