This project is a simple C program that performs basic arithmetic operations such as addition, subtraction, and multiplication.
- GNU Autotools (autoconf, automake, aclocal)
- GCC (GNU Compiler Collection)
- Clone the repository:
git clone git@github.com:omoskovko/c_project.git cd c_project - Generate the configuration script:
aclocal autoconf automake --add-missing
- Configure the project:
./configure
- Build the project:
make
- Install the program:
sudo make install
Run the installed program:
my_program- Clean the build files and all generated files:
make clean
- Uninstall the program:
sudo make uninstall
- Clean everything including installed files:
sudo make clean-all