# Assignment 5: Basic Memory Allocator This is the starter code for [Assignment 5](https://course.ccs.neu.edu/cs3650sp23/a05.html). The [Makefile](Makefile) contains the following targets: - `make all` - compile [mymalloc.c](mymalloc.c) into the object file `mymalloc.o` - `make test` - compile and run tests in the [tests](tests/) directory with `mymalloc.o`. - `make demo` - compile and run tests in the tests directory with standard malloc. - `make clean` - perform a minimal clean-up of the source tree - `make help` - print available targets