automake
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Makefile.am and other directories...


From: Tom Tromey
Subject: Re: Makefile.am and other directories...
Date: 20 Feb 2001 11:00:00 -0700

>>>>> "Jiva" == Jiva DeVoe <address@hidden> 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]