I'm a tup newbie and am struggling with my directory structure. Consider the following tree:
liba |-- a.cpp a.h Tupfile Tupfile.ini libb |-- b.cpp b.h Tupfile Tupfile.ini myapp |-- myapp.cpp Tupfile Tupfile.ini Note: myapp depends on liba and lib, who are a level above. liba and libb build okay, but when I cd to myapp, the following rule doesn't work: : ../liba/liba.a ../libb/libb,a *.cpp |> gcc -Wall -c %f -o %o |> %B.o This throws the following parsing error: Failed to find directory ID for dir '../liba/liba.a' relative to '.' -- -- 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.
