Add GNU conformant files

This commit is contained in:
2024-11-22 14:49:03 +11:00
parent fdfba7be5b
commit 466971f1a0
6 changed files with 138 additions and 24 deletions
+50
View File
@@ -0,0 +1,50 @@
The Harriman-Peikoff Project Installation Instructions
======================================================
1. Prerequisites
----------------
Ensure you have the following tools installed on your system:
- GNU Autoconf
- GNU Automake
- GNU Make
- A C++ compiler (e.g., GCC)
2. Building the Project
------------------------
Open a terminal and navigate to the root directory of the project. Then run the
following commands:
```sh
./autogen.sh
./configure
make
```
3. Installing the Project
--------------------------
To install the project, run the following command with superuser privileges:
```sh
sudo make install
```
4. Running the Project
-----------------------
After installation, you can run the project by executing:
```sh
harikoff
```
5. Uninstalling the Project
----------------------------
To uninstall the project, navigate to the root directory of the project and run:
```sh
sudo make uninstall
```
6. Troubleshooting
-------------------
If you encounter any issues during installation or usage, please refer to the
`README.md` file or contact the project maintainers for support.