Initial commit

This commit is contained in:
Sasha Koshka
2023-11-03 17:59:24 -04:00
commit 344c3b8431
32 changed files with 838 additions and 0 deletions

34
INSTALL.md Normal file
View File

@@ -0,0 +1,34 @@
# Installing
## Dependencies
- Xlib
- Xt
- Motif
- A C compiler
Installing via APK:
```sh
# apk add libx11 libx11-dev libxt libxt-dev motif motif-dev clang
```
## libXmd
Before building any of the applications you will need to build libXmd, which
contains code common to most of them:
```
# cd libXmd
# ./build.sh install
```
## Individual applications
Individual applications can be installed using `./build.sh` in their respective
subdirectories:
```
# cd <application>
# ./build.sh install
```