Update README.md

This commit is contained in:
Fabio Scotto di Santolo
2025-07-01 10:48:47 +02:00
committed by GitHub
parent d3eb4c3f28
commit 7a2535268b

View File

@@ -9,10 +9,11 @@ It copies the contents of one file into another, handling errors and signals saf
``` ```
mycp/ mycp/
├── mycp.c # Main program source ├── main.c # Main program source
├── Makefile # Build and test automation ├── Makefile # Build and test automation
── test/ ── generate_report.sh # Generate test report in HTML
└── run_tests.sh # Automated test and Valgrind report ├── test_mycp.sh # Automated test
├── valgrind_test.sh # Execute Valgrind tests
``` ```
--- ---
@@ -25,16 +26,16 @@ To compile the program:
make make
``` ```
To clean up build files: To run valgrind test:
```bash ```bash
make clean make valgrind
``` ```
To remove test artifacts as well: To remove test artifacts as well:
```bash ```bash
make distclean make clean
``` ```
--- ---