diff options
author | Alexis211 <alexis211@gmail.com> | 2009-10-21 19:11:53 +0200 |
---|---|---|
committer | Alexis211 <alexis211@gmail.com> | 2009-10-21 19:11:53 +0200 |
commit | e70b7c569ba13a68aba1c2b127811e61ac88a902 (patch) | |
tree | 4fa6bb927e22b9664e172ebe9c74b10680df3036 /Makefile | |
parent | dc37d089e8ca98ff2dc8a320c21fc3ac0a87eaa6 (diff) | |
download | Melon-e70b7c569ba13a68aba1c2b127811e61ac88a902.tar.gz Melon-e70b7c569ba13a68aba1c2b127811e61ac88a902.zip |
Started working on user managment
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -5,6 +5,8 @@ Projects = Kernel Library Tools/MakeRamFS Applications/Shell Applications/Sample Kernel = Source/Kernel/Melon.ke RamFS = Init.rfs RamFSFiles = :/System :/System/Applications :/System/Configuration :/System/Keymaps \ + Source/Kernel/Ressources/Configuration/Users:/System/Configuration/Users \ + Source/Kernel/Ressources/Configuration/Groups:/System/Configuration/Groups \ Source/Kernel/Ressources/Keymaps/fr.mkm:/System/Keymaps/fr.mkm \ Source/Kernel/Ressources/Texts/Welcome.txt:/Welcome.txt \ Source/Applications/SampleApps/asmdemo:/ad \ @@ -19,6 +21,7 @@ Floppy = Melon.img all: for p in $(Projects); do \ + echo "=> Building $$p"; \ make -C Source/$$p -s; \ done @@ -26,16 +29,19 @@ $(Files): all rebuild: for p in $(Projects); do \ + echo "=> Building $$p"; \ make -C Source/$$p rebuild -s; \ done clean: for p in $(Projects); do \ + echo "=> Building $$p"; \ make -C Source/$$p clean -s; \ done mrproper: for p in $(Projects); do \ + echo "=> Building $$p"; \ make -C Source/$$p mrproper -s; \ done |