Building DNA from Scratch in C Project Structure dna/ ├── Makefile ├── main.c ├── base.h base.c ├── strand.h strand.c ├── helix.h helix.c ├── mutation.h mutation.c └── analysis.h analysis.c To build and run: make ./dna To clean up object files and the binary: make clean