summaryrefslogtreecommitdiff
path: root/mk/help.mk
diff options
context:
space:
mode:
authorAbdoulaye Walsimou Gaye <awg@embtoolkit.org>2011-08-30 01:53:02 +0200
committerAbdoulaye Walsimou Gaye <awg@embtoolkit.org>2011-08-30 01:54:16 +0200
commit7bc9c4634986cf099ecd7f83c942d90e6aa6d7ec (patch)
treee1787fa38e51bdda64da8fb14c40c0b976e941e4 /mk/help.mk
parenta33deff5a51abab7ea8b65f0253541e4c8d5f6f9 (diff)
downloadembtoolkit-7bc9c4634986cf099ecd7f83c942d90e6aa6d7ec.tar.gz
embtoolkit-7bc9c4634986cf099ecd7f83c942d90e6aa6d7ec.tar.bz2
embtoolkit-7bc9c4634986cf099ecd7f83c942d90e6aa6d7ec.tar.xz
Move embtk help in its own makefile
Signed-off-by: Abdoulaye Walsimou Gaye <awg@embtoolkit.org>
Diffstat (limited to 'mk/help.mk')
-rw-r--r--mk/help.mk59
1 files changed, 59 insertions, 0 deletions
diff --git a/mk/help.mk b/mk/help.mk
new file mode 100644
index 0000000..78c5db3
--- /dev/null
+++ b/mk/help.mk
@@ -0,0 +1,59 @@
+################################################################################
+# EmbToolkit
+# Copyright(C) 2011 Abdoulaye Walsimou GAYE.
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+################################################################################
+#
+# \file help.mk
+# \brief help.mk of Embtoolkit
+# \author Abdoulaye Walsimou GAYE <awg@embtoolkit.org>
+# \date August 2011
+################################################################################
+
+help:
+ $(call embtk_generic_msg,"Embedded systems Toolkit help. Please \
+ visit - http://embtoolkit.org - for more details")
+ @echo " ---------------------------"
+ @echo "| Building and configuring: |"
+ @echo " ---------------------------"
+ @echo "make xconfig: Show EmbToolkit configure GUI and let you to"
+ @echo " configure your toolchain and your root"
+ @echo " filesystem (if selected)."
+ @echo
+ @echo "make menuconfig: Same as xconfig but using this time ncurse GUI."
+ @echo
+ @echo "make: Start building your toolchain and your root"
+ @echo " filesystem (if selected) or start xconfig if"
+ @echo " you did not configure before."
+ @echo
+ @echo " -----------"
+ @echo "| Cleaning: |"
+ @echo " -----------"
+ @echo "make clean: Remove all built files, but keep downloaded"
+ @echo " packages."
+ @echo
+ @echo "make distclean: Same as clean, but remove all downloaded"
+ @echo " packages and .config.old files."
+ @echo
+ @echo " -----------------"
+ @echo "| Root filesystem |"
+ @echo " -----------------"
+ @echo "make rootfs_build:"
+ @echo " if after a first build of your toolchain and"
+ @echo " your root filesystem, you change the contents"
+ @echo " of the root filesystem, use this target to"
+ @echo " rebuild it."
+ @echo