>>>>> "Jiva" == Jiva DeVoe <[EMAIL PROTECTED]> writes: Jiva> I have a project with the following structure: Jiva> src/ Jiva> part1/ Jiva> part2/ Jiva> The code in part1/ depends on .o files created in part2/. What Jiva> sort of macros should I put in my part1/ Makefile.am to cause it Jiva> to make sure the files in part2/ are made before it tries to Jiva> make the stuff in part1/? Use the ordering of directories in src/Makefile.am to do this: SUBDIRS = part2 part1 Tom
- Makefile.am and other directories... Tom Tromey
- Makefile.am and other directories... Jiva DeVoe
- Re: Makefile.am and other directories... Jiva DeVoe
- Re: Makefile.am and other directories... Tom Tromey