Build,Misc: Update gitignores for autotools
This commit is contained in:
+1
-1
@@ -3,6 +3,6 @@
|
|||||||
**/Makefile.in
|
**/Makefile.in
|
||||||
aclocal.m4
|
aclocal.m4
|
||||||
/b
|
/b
|
||||||
/build-aux
|
/autotools-aux
|
||||||
autom4te.cache/
|
autom4te.cache/
|
||||||
config.h.in
|
config.h.in
|
||||||
|
|||||||
@@ -1,7 +0,0 @@
|
|||||||
The Harriman-Peikoff Project
|
|
||||||
============================
|
|
||||||
|
|
||||||
Authors
|
|
||||||
-------
|
|
||||||
|
|
||||||
- Kofi Doku Atuah <latentprion@gmail.com>
|
|
||||||
@@ -1,69 +0,0 @@
|
|||||||
The Harriman-Peikoff Project License Agreement
|
|
||||||
|
|
||||||
This software and associated documentation files (the "Software") are the
|
|
||||||
proprietary and confidential information of Kofi Doku Atuah ("Licensor").
|
|
||||||
By using, copying, modifying, or distributing the Software, you agree to be
|
|
||||||
bound by the terms of this License Agreement.
|
|
||||||
|
|
||||||
1. License Grant
|
|
||||||
Licensor grants you a limited, non-exclusive, non-transferable, and
|
|
||||||
revocable license to use the Software solely for your internal business
|
|
||||||
purposes, subject to the terms and conditions of this License Agreement.
|
|
||||||
|
|
||||||
2. Restrictions
|
|
||||||
You shall not:
|
|
||||||
a. Copy, modify, or create derivative works of the Software;
|
|
||||||
b. Distribute, transfer, sublicense, lease, lend, or rent the Software to
|
|
||||||
any third party;
|
|
||||||
c. Reverse engineer, decompile, or disassemble the Software;
|
|
||||||
d. Remove or alter any proprietary notices or labels on the Software.
|
|
||||||
|
|
||||||
3. Ownership
|
|
||||||
Licensor retains all right, title, and interest in and to the Software,
|
|
||||||
including all intellectual property rights therein. This License Agreement
|
|
||||||
does not grant you any ownership rights in the Software.
|
|
||||||
|
|
||||||
4. Termination
|
|
||||||
This License Agreement is effective until terminated. Licensor may terminate
|
|
||||||
this License Agreement at any time without notice if you breach any term of
|
|
||||||
this License Agreement. Upon termination, you shall cease all use of the
|
|
||||||
Software and destroy all copies of the Software in your possession or
|
|
||||||
control.
|
|
||||||
|
|
||||||
5. Disclaimer of Warranties
|
|
||||||
The Software is provided "as is" without warranty of any kind, express or
|
|
||||||
implied, including but not limited to the warranties of merchantability,
|
|
||||||
fitness for a particular purpose, and non-infringement. Licensor does not
|
|
||||||
warrant that the Software will meet your requirements or that the operation
|
|
||||||
of the Software will be uninterrupted or error-free.
|
|
||||||
|
|
||||||
6. Limitation of Liability
|
|
||||||
In no event shall Licensor be liable for any damages whatsoever (including,
|
|
||||||
without limitation, damages for loss of business profits, business
|
|
||||||
interruption, loss of business information, or other pecuniary loss) arising
|
|
||||||
out of the use or inability to use the Software, even if Licensor has been
|
|
||||||
advised of the possibility of such damages.
|
|
||||||
|
|
||||||
7. Governing Law
|
|
||||||
This License Agreement shall be governed by and construed in accordance with
|
|
||||||
the laws of the State of Delaware, USA. If the laws of Delaware, USA, are
|
|
||||||
not applicable, then the laws of Switzerland shall apply. If neither the
|
|
||||||
laws of Delaware, USA, nor Switzerland are applicable, then the laws of
|
|
||||||
the jurisdiction chosen by the Licensor shall apply, without regard to its
|
|
||||||
conflict of law principles.
|
|
||||||
|
|
||||||
8. Entire Agreement
|
|
||||||
This License Agreement constitutes the entire agreement between you and
|
|
||||||
Licensor with respect to the Software and supersedes all prior or
|
|
||||||
contemporaneous understandings or agreements, written or oral, regarding
|
|
||||||
such subject matter.
|
|
||||||
|
|
||||||
If you have any questions about this License Agreement, please contact:
|
|
||||||
|
|
||||||
Kofi Doku Atuah:
|
|
||||||
Email: <latentprion@gmail.com>
|
|
||||||
GitHub: <github.com/latentprion>
|
|
||||||
LinkedIn: <www.linkedin.com/in/kofi-doku-atuah-0142054a>
|
|
||||||
|
|
||||||
Kofi Doku Atuah
|
|
||||||
2024-Nov-21
|
|
||||||
@@ -1,50 +0,0 @@
|
|||||||
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.
|
|
||||||
Reference in New Issue
Block a user