To build a specific data structure, run the following command:
make TARGET=<file_name_without_extension>
The available implementations are:
dynamic_array
singly_linked_list
For example, to build the dynamic array file, run:
make TARGET=dynamic_array
To clean up the build files, run:
make clean