TheJosh / chaotic-rage

An unusual zombie shooter game for Windows and Linux
GNU General Public License v2.0
35 stars 10 forks source link

Makefile should detect changes in headerfiles #75

Closed esper closed 10 years ago

esper commented 10 years ago

If there is a change in a header file, all source files that includes the header file should be re-built.

TheJosh commented 10 years ago

I agree, this is a real pain. We can either write all the dependencies into the Makefile (there are tools which you can use to do this automatically).

Or should we be switching to a managed build system which does it automatically (e.g. cmake)

TheJosh commented 10 years ago

Oh wow, I didn't know about dependency files. That's cool.