Am 21.05.2013 03:36, schrieb cramerj: > Hello, > > I am trying to build a 32-bit and 64-bit library using the same source with > just one invocation of Make. Unfortunately, I can't seem to figure out how > to tell Make to delete the intermediate files before trying to build the > second library. The object files persist in Make's database so that it > performs the archive of the second target using the first target's object > files. Only after that is done, Make will then delete the object files (as > expected). Also, if you have any "facepalm" moments with this example, feel > free to let me know. :)
you can try it with vpath, you need then for every architecture a subdirectory where you include the main Makefile. Gruß Matthias -- "Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the universe trying to produce bigger and better idiots. So far, the universe is winning." -- Rich Cook _______________________________________________ Help-make mailing list [email protected] https://lists.gnu.org/mailman/listinfo/help-make
