I just made a modification to the final step so that it will first echo out
to a text file and then perform the archiving step:

$(LIBNAME) :: $(OBJFILENAMES)   
        echo a > $(@F).txt
        $(AR) $(ARFLAGS) ./$(OBJFILE)/$(@F) $^

I then did a "ls --full-time" on three different files: 1. the .o file from
"the future", 2. the text file, 3. the library file from the archiver. In
this case, all of the timestamps are identical down to the second (anything
after the decimal point in seconds is 0 for all files).

So, I am confused about what GNU Make is really complaining about.
:confused:
-- 
View this message in context: 
http://www.nabble.com/Clock-skew-detected%2C-how-to-fix--tp17655253p17674582.html
Sent from the Gnu - Make - Help mailing list archive at Nabble.com.



_______________________________________________
Help-make mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-make

Reply via email to