File: parallel-subdirs.mak

package info (click to toggle)
gst-plugins-bad0.10 0.10.23-7.4
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 38,680 kB
  • sloc: ansic: 321,729; cpp: 22,039; xml: 13,558; sh: 13,250; makefile: 4,803; perl: 1,429; objc: 1,272; python: 396; sed: 16
file content (13 lines) | stat: -rw-r--r-- 435 bytes parent folder | download | duplicates (75)
1
2
3
4
5
6
7
8
9
10
11
12
13
# include this at the end of $MODULE/ext/Makefile.am to force make to
# build subdirectories in parallel when make -jN is used. We will end up
# descending into all subdirectories a second time, but only after the first
# (parallel) run has finished, so it should go right through the second time.

.PHONY: independent-subdirs $(SUBDIRS)

independent-subdirs: $(SUBDIRS)

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

all-recursive: independent-subdirs