|
From: | Noel Yap |
Subject: | Re: how to enforce ordering on a set of targets? |
Date: | Thu, 27 Jan 2005 08:55:29 -0500 |
User-agent: | Mozilla Thunderbird 0.5 (Windows/20040212) |
Paul D. Smith wrote:
%% Noel Yap <address@hidden> writes: ny> I don't understand. Wouldn't it be possible to do: ny> .PHONY: populate ny> populate: pre-populate | ${SUBDIRS} Sure but that doesn't do what the OP asked. He wanted to be sure that pre-populate was completed BEFORE any of the ${SUBDIRS} were built.
I haven't used this stuff in a while (and was too lazy to look it up). What about: .PHONY: populate populate: ${SUBDIRS} | pre-populate
[Prev in Thread] | Current Thread | [Next in Thread] |