vote up 3 vote down star
1

I'm trying to consolidate some build information by using a common makefile. My problem is that I want to use that makefile from different subdirectory levels, which makes the working directory value (pwd) unpredictable. For example:

# Makefile.common
TOP := $(shell pwd)
COMPONENT_DIR := $(TOP)/component
COMPONENT_INC := $(COMPONENT_DIR)/include
COMPONENT_LIB := $(COMPONENT_DIR)/libcomponent.a

If I include Makefile.common from a subdirectory, like so, the $(TOP) directory is incorrect and everything else follows suit:

# other_component/Makefile
include ../Makefile.common
# $(COMPONENT_LIB) is incorrectly other_component/component

What's the best way to get Makefile.common to use its own directory path instead of the more fickle pwd?

flag

2 Answers

vote up 2 vote down check

You should be able to use the MAKEFILE_LIST variable, like this:

# This must be the first this in Makefile.common
TOP := $(dir $(lastword $(MAKEFILE_LIST)))

From the documentation:

As make reads various makefiles, including any obtained from the MAKEFILES variable, the command line, the default files, or from include directives, their names will be automatically appended to the MAKEFILE_LIST variable. They are added right before make begins to parse them. This means that if the first thing a makefile does is examine the last word in this variable, it will be the name of the current makefile. Once the current makefile has used include, however, the last word will be the just-included makefile.

link|flag
This worked wonderfully on my dev box, but I realized the target machine was running make 3.79, and the MAKEFILE_LIST feature was added in make 3.80: mail-archive.com/help-make@gnu.org/msg05902.html/… – cdleary Dec 12 '08 at 1:52
vote up 2 vote down

Have you tried doing:

# Makefile.common
TOP ?= $(shell pwd)
COMPONENT_DIR := $(TOP)/component
COMPONENT_INC := $(COMPONENT_DIR)/include
COMPONENT_LIB := $(COMPONENT_DIR)/libcomponent.a

# other_component/Makefile
TOP ?= ..
include ../Makefile.common

Using the ?= construct will keep TOP from being redefined if it is already set. You can set it to the appropriate value based on where you are in the tree when you invoke make. I confess it's been awhile since I've used GNU make so this may not work or may need some tweaks.

link|flag
Agreed, that would work. I'm hoping there's a way to do it that doesn't require preparation on the part of the makefile (other than inclusion), but that's certainly a good fallback. – cdleary Nov 27 '08 at 4:53

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.