tdenniston / bish

Bish is a language that compiles to Bash. It's designed to give shell scripting a more comfortable and modern feel.
MIT License
1.48k stars 36 forks source link

Include the generated dependency files #34

Closed richq closed 9 years ago

richq commented 9 years ago

Prior to this change, touch src/Parser.h would only cause Parser.o to recompile, but Compile.cpp should also have been recompiled since it includes Parser.h. The deps were created, just not included in the Makefile.

tdenniston commented 9 years ago

Thanks! That has been bugging me.