We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8dada46 commit b90ed47Copy full SHA for b90ed47
plc-emscripten/.gitignore
@@ -1,3 +1,4 @@
1
plc.html
2
plc.js
3
plc.wasm
4
+dist
plc-emscripten/Makefile
@@ -10,6 +10,14 @@ html:
10
cp gui/precursorlanguages.html gui/*.css gui/*.js /var/www/html
11
cp gui/gfx /var/www/html -R
12
13
+dist:
14
+ mkdir dist
15
+ cp plc.js plc.wasm plc.html dist
16
+ cp gui/precursorlanguages.html gui/*.css gui/*.js dist
17
+ cp gui/gfx dist -R
18
+ tar -czf plc.tgz dist
19
+
20
21
22
clean:
23
rm -f plc.js plc.wasm plc.html
0 commit comments