Makefile executing another makefile

Sep 23, 2010 at 3:02pm
Assume that I had created a makefile in directory "projectX". In directory "projectX", assume that there is a subdirectory named "projectY" with a makefile inside.

I want to make the makefile in directory "projectX", when executed, it will also execute the makefile stored in "projectY" at first.

What are the codes I need to implement in makefile in directory "projectX"?
Last edited on Sep 23, 2010 at 3:44pm
Sep 23, 2010 at 3:37pm
make -f makefile i guess
Last edited on Sep 23, 2010 at 3:39pm
Sep 23, 2010 at 9:44pm
cd $(subdir) && make
Sep 23, 2010 at 10:01pm
I think something a bit like this might do it:
1
2
3
4
5
6
7
8
SUBDIRS = projectX projectY

all: $(SUBDIRS)

$(SUBDIRS):
	$(MAKE) -C $@

.PHONY: $(SUBDIRS)


EDIT: That's not quite the example asked for. It will try to build two projects in sub directories projectX and projectY from the current project in the current directory.

EDIT: Fixed to use moorecm's invocation command
Last edited on Sep 24, 2010 at 12:59pm
Sep 24, 2010 at 12:21pm
In a top-level makefile, just use something like:
$(MAKE) -C dir

The -C option changes the directory before invoking the make. The $(MAKE) variable will use the same make executable as the top-level makefile. man make for more information.
Topic archived. No new replies allowed.