11
votes

I have a rather huge autotools-powered project that lives in a directory tree consisting of a lot of directories with subdirectories. It's got a target check (in each subdirectory as well as the main directory) that executes a whole lot of automated tests. The check target is built recursively.

Building as well as testing in parallel (via the -j option to make) works for most of the directories. There is however one directory that contains test that don't work when executed in parallel (timing sensitivity), but pass when run serially.

The question is: Is there a way to force make to build the check target serially in just this one subdirectory while building everything else in parallel?

2
The only trick I can think of is inserting a false dependency for the serial check. There's a basic idea in the manual. - Brett Hale
Why not solve this the make way by making the targets depend on each other? - reinierpost

2 Answers

24
votes

Add to your Makefile:

.NOTPARALLEL:

See the documentation of GNU make here.

5
votes

If I understood you correctly, then when you run the recursive make that builds the check target you can just pass -j1 specifically, to ensure that it runs serially:

check: ; $(MAKE) -j1 ...