DEADSOFTWARE

5af69d54bd3132781938f50156752eb2d4ca83bd
[bbcp.git] / README
1 Ducumentation (Russian):
3 http://gitlab.molpit.com/oberon/blackbox-freenix/wikis/home
5 Directories structure:
7 BlackBox/
8 universal development environment
9 synchronized with original BlackBox 1.6
11 examples/
12 some outdated examples
14 server/
15 static web-server as the example of an application for Linux OS
16 console/
17 simple console application
18 fpstest/
19 loop test
21 To build BlackBox:
23 cd BlackBox
24 ./switch-target `uname -s` GUI
25 ./build
27 To run BlackBox (after build):
29 ./run-BlackBox
31 To create BlackBox assembly (after build):
33 ./export <outputDirectory>
35 Example: build, create assembly in /tmp, run BlackBox from assembly:
36 cd BlackBox
37 ./switch-target `uname -s` GUI
38 ./build
39 ./export /tmp/BlackBox-`uname -s`
40 cd /tmp/BlackBox-`uname -s`
41 ./run-BlackBox