summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b15010d..0a62c46 100644
--- a/Makefile
+++ b/Makefile
@@ -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)