| Ok, I managed to figgure out enough about make files to know how to use them.. or at least, in a basic sense.. Although, i'm finding, that if I don't use the #ifndef and #endif on my sample program, it had no problem.
Though one of the tutorials i read says we should use them in the header files, like such:
#ifndef _myclass_h_
#define _myclass_h_
// .. stuff here
#endif
so I must ask, when is an #ifndef important and when is it just bloat? |