diff options
author | Alexis211 <alexis211@gmail.com> | 2009-10-23 19:40:08 +0200 |
---|---|---|
committer | Alexis211 <alexis211@gmail.com> | 2009-10-23 19:40:08 +0200 |
commit | 48de0cd029b52f64f76345b6e1fdf3cde5c58de3 (patch) | |
tree | 792061381c556bef6639b327716cca107f6168c5 /Makefile | |
parent | f0556ed7f051fb101dc68752526696365bf79a11 (diff) | |
download | Melon-48de0cd029b52f64f76345b6e1fdf3cde5c58de3.tar.gz Melon-48de0cd029b52f64f76345b6e1fdf3cde5c58de3.zip |
More work on syscalls and shell
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1,4 +1,4 @@ -.PHONY: clean, mrproper, Init.rfs +.PHONY: clean, mrproper, Init.rfs, commit Projects = Kernel Library Tools/MakeRamFS Applications/Shell Applications/SampleApps @@ -45,6 +45,10 @@ mrproper: make -C Source/$$p mrproper -s; \ done +commit: mrproper + git add . + git commit -a + $(RamFS): Source/Tools/MakeRamFS/MakeRamFS $(RamFS) $(RamFSFiles) |