blob: 5a92c72e4cd9160b0bf98e03670c15221d0c57e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# ubox lib for DOS
This is a simple library to make DOS games with DJGPP.
Required:
- GNU Make
- DJGPP C (using GCC 12.1.0; other may work)
- [libmikmod](https://mikmod.sourceforge.net/)
For DJGPP I recommend cross-compilation using [build-djgpp](https://github.com/andrewwutw/build-djgpp/).
How to use it:
- set `LIBMIKMOD_BASE` env variable to your libmikmod sources
- build the library with `make`
- link your code with `ubox` and `mikmod` libraries (build `libmikmod` for DOS yourself)
## Author
This was made by [Juan J. Martinez](https://www.usebox.net/jjm/about/me/).
The code is licensed MIT, see [docs/uboxl.txt](docs/uboxl.txt) file.
When distributing your works made with this library, you need to include the
files in the `docs/` directory.
Visit [the project website](https://git.usebox.net/uboxlib-dos/about/) for updates.
|