I'm having problems with makefile. I'm not sure why really.
My modules are distributed like this:
main.c:
#include "LL.h"
LL.c:
#include "LL.h"
LL.h:----
Makefile:
#makefile
a.out: main.o LL.o
gcc main.o LL.o
main.o: main.c LL.h
gcc -g -c main.c
LL.o: LL.c LL.h
gcc -g -c LL.c
I'm using virtual machine with ubuntu, and indeed the clock gets lapsed comparing to windows clock.
I get this message on stdout:
make: Warning: File `a.out' has modification time 3.8e+03 s in the future
make: `a.out' is up to date.
make: warning: Clock skew detected. Your build may be incomplete.
and sometimes will keep trying to link/compile certain lines of make.
Looking for an enlightening Thanks ;)