summaryrefslogtreecommitdiffstats
path: root/doc/texi/build/command.texi
diff options
context:
space:
mode:
Diffstat (limited to 'doc/texi/build/command.texi')
-rw-r--r--doc/texi/build/command.texi27
1 files changed, 27 insertions, 0 deletions
diff --git a/doc/texi/build/command.texi b/doc/texi/build/command.texi
new file mode 100644
index 000000000..db6b0b493
--- /dev/null
+++ b/doc/texi/build/command.texi
@@ -0,0 +1,27 @@
+@macro COMMAND.checkout{}
+svn checkout @value{HB.repo.url} @value{HB.acro.lower}-@value{HB.repo.branch}
+cd @value{HB.acro.lower}-@value{HB.repo.branch}
+@end macro
+
+@macro COMMAND.configure.launch{}
+./configure --launch
+@end macro
+
+@macro COMMAND.configure{}
+rm -fr build/
+mkdir build/
+cd build/
+../configure
+@end macro
+
+@macro COMMAND.build{}
+make
+@end macro
+
+@macro COMMAND.clean{}
+make clean
+@end macro
+
+@macro COMMAND.xclean{}
+make xclean
+@end macro