Your On 3 March 2015 at 04:46, <[email protected]> wrote:
> Hi, > > my tupfile: > > : hello.c |> xcopy > hello.o |> hello.o > > This line says that it reads hello.c and writes hello.o. However, the command does not actually read hello.c, but it does write hello.o Tup remembers which files the command actually used, rather than the ones that you said the command would use. Did you intend to write: : hello.c |> xcopy hello.c hello.o |> hello.o or : hello.c |> xcopy %f %o |> hello.o Stephen Irons tup only runs once and generates the hello.o. The next run tup tells me > nothing has changed. Thats ok. > > If I change the hello.c and run "tup" again it still says nothing to do. > Why does tup not recognize that my hello.c file has changed? I changed file > contents with eclipse. If I delete the hello.o, tup rebuilds and says it > was deleted from outside... > > Does anybody has the same issues? > > Is tup not working with Windows 7 x64? > > Regards, > > Tobias > > -- > -- > tup-users mailing list > email: [email protected] > unsubscribe: [email protected] > options: http://groups.google.com/group/tup-users?hl=en > --- > You received this message because you are subscribed to the Google Groups > "tup-users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/d/optout. > -- -- tup-users mailing list email: [email protected] unsubscribe: [email protected] options: http://groups.google.com/group/tup-users?hl=en --- You received this message because you are subscribed to the Google Groups "tup-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
