]> git.plutz.net Git - flarejs/commitdiff
initial
authorPaul Hänsch <paul@plutz.net>
Tue, 4 Feb 2020 17:33:44 +0000 (18:33 +0100)
committerPaul Hänsch <paul@plutz.net>
Tue, 4 Feb 2020 17:33:44 +0000 (18:33 +0100)
Makefile [new file with mode: 0644]
flarejs.html [new file with mode: 0644]

diff --git a/Makefile b/Makefile
new file mode 100644 (file)
index 0000000..24781a9
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,9 @@
+.PHONY: _subtrees
+
+_subtrees: _cgilite
+
+cgilite:
+       git subtree add --squash -P $@ https://git.plutz.net/git/$@ master
+
+_cgilite: cgilite
+       git subtree pull --squash -P $< https://git.plutz.net/git/$< master
diff --git a/flarejs.html b/flarejs.html
new file mode 100644 (file)
index 0000000..06c1fed
--- /dev/null
@@ -0,0 +1,14 @@
+<!DOCTYPE HTML>
+<html><head>
+  <title>FlareJS</title>
+</head><body onload="script();">
+  <canvas id="view" width=640 height=480 />
+  <script>
+
+view = getElementById("view");
+
+function Mob(textdef) {
+}
+
+  </script>
+</body></html>