]> rtime.felk.cvut.cz Git - omk.git/commitdiff
Fixed HTML manual and added web homepage.
authorMichal Sojka <sojkam1@fel.cvut.cz>
Mon, 22 Oct 2007 16:28:00 +0000 (16:28 +0000)
committerMichal Sojka <sojkam1@fel.cvut.cz>
Mon, 22 Oct 2007 16:28:00 +0000 (16:28 +0000)
darcs-hash:20071022162855-f2ef6-780e17f10505dae2baec575d01f0e642c0a9a678.gz

doc/Makefile
doc/index.html [new file with mode: 0644]

index 21c32150fb8ff60ca0c8f5d568b506a5465c18d1..30da936bf758374f353e28e93fad3d3d2bf8aedd 100644 (file)
@@ -16,6 +16,10 @@ PDF_FIGS = $(patsubst %.png,%.pdf,$(PNG_FIGS))
 
 %.html: %.texinfo
        texi2html --l2h $<
+# Fix texinfo HTML output
+       perl -w -n -e 'if (/<div class="contents">/) {$$toc=1}' \
+                  -e 'if (!$$toc) { s/class="toc"//}; print' < $@ > $@.tmp
+       mv $@.tmp $@
 
 clean:
        rm -f $(SOURCE).{aux,cp,cps,fn,ky,log,pg,toc,tp,vr,vrs} $(PDF_FIGS)
diff --git a/doc/index.html b/doc/index.html
new file mode 100644 (file)
index 0000000..8d339bf
--- /dev/null
@@ -0,0 +1,59 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html>
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2">
+<title>OMK Make-System Homepage</title>
+</head>
+
+<body>
+<h1>OMK Make-System Homepage</h1>
+
+<h2>Overview</h2>
+
+OMK is an advanced make system written entirely in GNU make. Compiling
+software using OMK requires only GNU make binary and standard UNIX
+utilities installed. OMK aims to be developer friendly; to use OMK,
+you do not need to understand (sometimes) cryptic syntax of Makefiles.
+
+
+<h2>Status</h2>
+
+OMK is in beta state. There is no release yet, but several people
+already use OMK for their projects.
+
+<h2>Download</h2>
+
+Currently, OMK can be downloaded only from <a
+href="http://darcs.net/">Darcs</a> repository. To download it, install
+darcs and run
+<pre>
+darcs get http://rtime.felk.cvut.cz/repos/omk/
+</pre>
+
+<h2>Documentation</h2>
+
+<ul>
+<li><a href="omk-manual.html">OMK Manual</a></li>
+<li><a href="http://www.gnu.org/software/make/manual/make.html">GNU
+Make Manual</a></li>
+</ul>
+
+<h2>Support</h2>
+
+There is no mailing list yet. Send an email to sojkam1 (at) fel.cvut.cz.
+
+<h2>Projects Usigng OMK</h2>
+<ul>
+  <li><a href="http://freshmeat.net/projects/lincan/">Lincan: Linux CAN Driver</a></li>
+  <li><a href="http://www.ocera.org/download/components/WP7/ethdev-0.2.2.html" >ORTE: OCERA Real-Time Ethernet</a></li>
+  <li><a href="http://aquosa.sourceforge.net/">AQuoSA: Adaptive Quality of Service Architecture</a></li>
+  <li><a href="http://ulan.sourceforge.net/">uLan communication</a></li>
+  <li><a href="http://www.eurobot.org/" >Eurobot</a> team <a href="http://rtime.felk.cvut.cz/dragons/">CTU Dragons</a></li>
+  <li><a href="http://dce.felk.cvut.cz/spejbl/">Spejbl: Biped robot</a></li>
+  <li><a href="http://rtime.felk.cvut.cz/helicopter/">RAMA: UAV Control System</a></li>
+  <li><a href="http://rtime.felk.cvut.cz/hw/index.php/H8300-boot">H8300-boot</a></li>
+</ul>
+<hr>
+<address></address>
+<!-- hhmts start -->Last modified: Mon Oct 22 18:27:17 CEST 2007 <!-- hhmts end -->
+</body> </html>