For example, from the mingw32-make.exe --help option:
-t, --touch Touch targets instead of remaking them.
For example, from the mingw32-make.exe --help option:
-t, --touch Touch targets instead of remaking them.
Touching a file means creating it if it doesn't already exist and updating its modification date, so using -t
will probably make make
think that everything was compiled, but not actually compile everything.
It's not dirty ;)
It just means to update the file modification time, so that next time, it won't consider those files old.
Touching a file means to write to it without writing any data to it.
The file will be created if it doesn't exist and its modification time will be set to now, as if you had written data to it.