### Description Allow multiple compilation targets in the make Example: `make release` `make debug` ### Requirements - [ ] Create multiple compilation targets in top level makefile - [ ] Set debug flags in separate configurations - [ ] Set compilation macros for different releases - [ ] Test Compilation targets compile ### Additional Notes By convention targets are: "debug", "release". Could include "production" to strip debug information if necessary
Description
Allow multiple compilation targets in the make
Example:
make releasemake debugRequirements
Additional Notes
By convention targets are: "debug", "release". Could include "production" to strip debug information if necessary