-
Notifications
You must be signed in to change notification settings - Fork 4
/
README
43 lines (29 loc) · 888 Bytes
/
README
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
30
31
32
33
34
35
36
37
38
39
40
41
42
Configuration and Installing lib65816
=====================================
To build, I execute the following steps:
```sh
cmake -S . -B build
cd build
make
```
This should result in two binaries within the `build` directory: `lib65816.a` and `lib65816.so`.
To perform a full system installation, perform this step within `build`:
```sh
sudo make install
```
Uninstalling
============
Inside the `build` directory created above,
you will find a file titled `install_manifest.txt`.
This file lists, one per line, each file installed during a `make install` operation.
At least for Unix systems,
you can uninstall lib65816 by executing the following command:
```sh
xargs rm < install_manifest.txt
```
I don't know the corresponding command for other operating systems.
Contact
=======
If you have any problems, feel free to contact me.
Samuel A. Falvo II
<kc5tja at arrl.net>