diff options
author | Alexis211 <alexis211@gmail.com> | 2009-09-13 18:34:39 +0200 |
---|---|---|
committer | Alexis211 <alexis211@gmail.com> | 2009-09-13 18:34:39 +0200 |
commit | 23c20becb3542c7d5fa041ec69902abe8e2c8d64 (patch) | |
tree | fd573796e5f00cf9f61de0a3a392bd790d5d5ac9 /Makefile | |
parent | c4f0f07dfcb946bfceb80790aa7e5e3ec0647e04 (diff) | |
parent | 668bbfdaea7e8cba8233ebffe2a9d46a66e257cd (diff) | |
download | Melon-23c20becb3542c7d5fa041ec69902abe8e2c8d64.tar.gz Melon-23c20becb3542c7d5fa041ec69902abe8e2c8d64.zip |
Merge branch 'vfs'
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 13 |
1 files changed, 9 insertions, 4 deletions
@@ -1,10 +1,12 @@ -.PHONY: clean, mrproper, Init.img +.PHONY: clean, mrproper, Init.rfs -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 Source/Kernel/Ressources/Welcome.txt:/Welcome.txt :/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; \ |