Hi!
I have a gcc project and would like to automatically add defines for build date and revision number (from git) to my sources. What's the best way to do this?
My goal is simple to be able to do something like this on startup: printf("Test app build on %s, revision %d", BUILD_DATE, REVISION)
For building I'm using make with a simple Makefile.inc, not autoconf ot anything like this.
Thanks, Corin