Minimalist GNU for Windows
Hack make timestamps
Note
This is considered a hack, that is, it's not meant to be done. Use it wisely, and don't use it if you don't know what you're doing, or what this hack does.
Hack
To avoid make to rebuild targets considered old (either by trying to use bison, flex, or autotools (autoconf?, automake?); then issue this command from the top level source directory.
$ touch -r COPYING `find`
It will set all the timestamps of all files under the current directory to the "COPYING" file timestamp. If "COPYING" doesn't exist, then you can use anyother file.


