"Brad Kemp" <[EMAIL PROTECTED]> writes:

> What I am trying to do is to build a project out of many sub projects.
> As each sub project is updated, I want the final target pathname to reflect
> the new revision level without having to change the main makefile.
> This allows me to build multiple versions of the same project.

Still not very clear so I am just guessing... You can, for example, include
makefiles in right order, e.g.,

# a.make

a_revision := 1

a:= $(a_revision)/a.so


# b.make

b_revision := 2

b:= $(b_revision)/b/so



# makefile

include a.make
include b.make

all: $(a) $(b)


-boris



_______________________________________________
Bug-make mailing list
[EMAIL PROTECTED]
http://lists.gnu.org/mailman/listinfo/bug-make

Reply via email to