reorganized file layout (part 1: moves and renames)
[org.ibex.core.git] / src / org / ibex / plat / package.html
diff --git a/src/org/ibex/plat/package.html b/src/org/ibex/plat/package.html
deleted file mode 100644 (file)
index a539002..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-<body>
-
-<p>
-Each platform which Ibex is ported to should have a subclass of {@link
-org.ibex.Platform} in this package as well as an ant buildfile.
-</p>
-
-<p>
-The subclass of {@link org.ibex.Platform} should be named
-<i>plat</i>.java, where <i>plat</i> is the descriptive name for the
-platform. The ant buildfile should be named <i>plat</i>.xml, and
-should contain three targets:
-</p>
-
-<ul><li> <b><tt>build</tt></b>: compiles all code required for the Ibex
-         Engine and creates an executable in
-         <tt>ibex/www/html/dist/</tt>. If applicable, all debugging
-         symbols should be left in this executable.
-
-    <li> <b><tt>run</tt></b>: runs the executable, loading the
-         <tt>org.ibex.demo.main</tt> widget demo. This is useful for
-         testing.
-
-    <li> <b><tt>dist</tt></b>: prepares any files required to
-         distribute the engine (for example, a jar or cab). This step
-         should remove debugging symbols, if applicable.
-</ul>
-
-<p>
-Other platform-specific files can be included in this directory, as
-long as they share the same filename as the main class, and differ
-only in extension (for example, <i>plat</i>.cc).
-</p>
-
-<p>
-Classes in this package may subclass each other; this is useful when
-two classes are very similar -- they can share a superclass containing
-the common functionality.
-</p>
-
-</body>