summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 6 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 9a7d72a..1237ef8 100644
--- a/Makefile
+++ b/Makefile
@@ -1,12 +1,15 @@
.PHONY: clean, mrproper, Init.rfs
-Projects = Kernel Tools/MakeRamFS
+Projects = Kernel Library Tools/MakeRamFS Applications/Shell Applications/SampleApps
Kernel = Source/Kernel/Melon.ke
RamFS = Init.rfs
RamFSFiles = :/System :/System/Applications :/System/Configuration :/System/Keymaps \
Source/Kernel/Ressources/Keymaps/fr.mkm:/System/Keymaps/fr.mkm \
Source/Kernel/Ressources/Texts/Welcome.txt:/Welcome.txt \
+ Source/Applications/SampleApps/asmdemo:/ad \
+ Source/Applications/SampleApps/cxxdemo:/cd \
+ Source/Applications/Shell/Shell:/shell \
:/Useless \
Source/Kernel/Ressources/Texts/Info.txt:/Useless/Info.txt \
Source/Kernel/Ressources/Graphics/logo.text.cxd:/Useless/Melon-logo
@@ -31,9 +34,9 @@ clean:
make -C Source/$$p clean -s; \
done
-mproper:
+mrproper:
for p in $(Projects); do \
- make -C Source mrproper -s; \
+ make -C Source/$$p mrproper -s; \
done
$(RamFS):