[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: supporting multiple independent checkouts of a project
From: |
Greg Chicares |
Subject: |
Re: supporting multiple independent checkouts of a project |
Date: |
Sun, 12 Feb 2006 13:26:05 +0000 |
User-agent: |
Mozilla Thunderbird 1.0.2 (Windows/20050317) |
On 2006-2-12 12:31 UTC, Robert P. J. Day wrote:
>
> $ alias fredmake="make -I${FRED_DIR}/mkfiles"
[...]
> is there a cleaner, standard way to do this?
You could write something like
MAKEFLAGS := --include-dir=$(FRED_DIR)/mkfiles
in your makefile, but I'd prefer specifying the path in the
include directives:
include $(srcdir)/$(makefilesdir)/whatever.make
and passing $(srcdir) and $(makefilesdir) to each submake, e.g.
$(MAKE) srcdir=$(srcdir) makefilesdir=$(makefilesdir) \
--directory=build-directory somegoal