make: mufs: re-organise code and add separate Makefile
This commit is contained in:
parent
2f632d140a
commit
7d968dfad9
13 changed files with 7 additions and 7 deletions
7
Makefile
7
Makefile
|
@ -29,13 +29,6 @@ obj-y += source/main.o
|
||||||
|
|
||||||
obj-y += source/core/flash.o
|
obj-y += source/core/flash.o
|
||||||
|
|
||||||
obj-y += source/fs/mufs/block.o
|
|
||||||
obj-y += source/fs/mufs/dir.o
|
|
||||||
obj-y += source/fs/mufs/file.o
|
|
||||||
obj-y += source/fs/mufs/path.o
|
|
||||||
obj-y += source/fs/mufs/super.o
|
|
||||||
obj-y += source/fs/mufs/tree.o
|
|
||||||
|
|
||||||
obj = $(addprefix $(BUILD)/, $(obj-y))
|
obj = $(addprefix $(BUILD)/, $(obj-y))
|
||||||
|
|
||||||
# Include the dependencies.
|
# Include the dependencies.
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
-include source/ftl/Makefile
|
-include source/ftl/Makefile
|
||||||
|
-include source/mufs/Makefile
|
||||||
-include source/platform/Makefile
|
-include source/platform/Makefile
|
||||||
-include source/shell/Makefile
|
-include source/shell/Makefile
|
||||||
|
|
6
source/mufs/Makefile
Normal file
6
source/mufs/Makefile
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
obj-y += source/mufs/block.o
|
||||||
|
obj-y += source/mufs/dir.o
|
||||||
|
obj-y += source/mufs/file.o
|
||||||
|
obj-y += source/mufs/path.o
|
||||||
|
obj-y += source/mufs/super.o
|
||||||
|
obj-y += source/mufs/tree.o
|
Loading…
Add table
Reference in a new issue