Update idl compiler authored by Aftab Hussain's avatar Aftab Hussain
Glue code is generated for each module. This is where the names of the files are generated in `main/main.cpp` (they are appended with the original name of the module):
```c++
std::string callee_h = new_name(m->identifier(), std::string("_callee.h"));
std::string callee_c = new_name(m->identifier(), std::string("_callee.c"));
...
```
\ No newline at end of file