diff options
author | Alexis211 <alexis211@gmail.com> | 2009-09-13 15:36:39 +0200 |
---|---|---|
committer | Alexis211 <alexis211@gmail.com> | 2009-09-13 15:36:39 +0200 |
commit | ace1914398633e05970f634ddec297665dfda7c6 (patch) | |
tree | c244c222a7693b5257e1e955b5ed372530035b19 /Makefile | |
parent | 0b760a50b5aee05f1f34c1599b547c8b78d1d737 (diff) | |
download | Melon-ace1914398633e05970f634ddec297665dfda7c6.tar.gz Melon-ace1914398633e05970f634ddec297665dfda7c6.zip |
RamFS creatable but not loadable yet
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 8 insertions, 3 deletions
@@ -1,10 +1,12 @@ .PHONY: clean, mrproper, Init.img -Files = Source/Kernel/Melon.ke +Files = Source/Kernel/Melon.ke Init.rfs Floppy = Melon.img -Projects = Kernel +Projects = Kernel Tools/MakeRamFS +RamFS = Init.rfs +RamFSFiles = :/System :/System/Applications :/System/Configuration all: for p in $(Projects); do \ @@ -26,7 +28,10 @@ mproper: make -C Source mrproper -s; \ done -floppy: +$(RamFS): + Source/Tools/MakeRamFS/MakeRamFS $(RamFS) $(RamFSFiles) + +floppy: $(RamFS) sudo mount $(Floppy) Mount -o loop for f in $(Files); do \ sudo cp $$f Mount; \ |