DevC++ 4992 with Alegro 4 and Windows XP
My source-file is getting to large so I loose lots of time with scrolling.
I think that using the project-option Makefile gives you the possibility to cut the source file into pieces.
I tried it but had no results.
Can anybody tell me how to do that?
What is the effect on local and global variables?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
DevC++ 4992 with Alegro 4 and Windows XP
My source-file is getting to large so I loose lots of time with scrolling.
I think that using the project-option Makefile gives you the possibility to cut the source file into pieces.
I tried it but had no results.
Can anybody tell me how to do that?
What is the effect on local and global variables?
Hi,
You can tell your Project to [b]Use a custom Makefile[/b] by going into
Project|Project Options|Makefile .
Instead, you could #include source files in each other:
#include "my_funcs.cpp"
.#include "my_include/my_funcs.hpp"
.