I have two directories, A and B. The makefile in B needs to compile some things from B into .o file (still in B), but also some things from A. The problem is, it creates the Astuff.o in A, and therefore when it continues and tries to link there are errors (because it can't find all the .o files).
Is there a way to specify "force build .o file here"?
Thanks!
Dave