Add instruction to remove compiled files

This commit is contained in:
Janita Willumsen 2023-09-25 13:39:30 +02:00
parent 11cd6aa27e
commit d6e0090fb8

View File

@ -8,7 +8,7 @@
Compiling and linking is done using Make, make sure you are in the root directory. Compiling and linking is done using Make, make sure you are in the root directory.
There are two ways of compiling the code. The first alternative is to change There are two alternative ways to compile the code. The first alternative is to change
directory to `src/` and compile directory to `src/` and compile
```shell ```shell
@ -29,6 +29,11 @@ You can run any of the compiled programs by changing directory to `src/`, then
./main ./main
``` ```
Remove object files and executables from `src/`
```shell
make clean
```
## Generate plots ## Generate plots