Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/suite3270/files: Makefile.in
Date: Wed, 27 Mar 2013 18:04:31
Message-Id: 20130327180427.E1FB42171D@flycatcher.gentoo.org
1 vapier 13/03/27 18:04:27
2
3 Added: Makefile.in
4 Log:
5 Build/install in parallel across all subdirs.
6
7 (Portage version: 2.2.0_alpha169/cvs/Linux x86_64, signed Manifest commit with key FB7C4156)
8
9 Revision Changes Path
10 1.1 net-misc/suite3270/files/Makefile.in
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/suite3270/files/Makefile.in?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/suite3270/files/Makefile.in?rev=1.1&content-type=text/plain
14
15 Index: Makefile.in
16 ===================================================================
17 # DO NOT STARE AT THE SUN
18 VER = @VER@
19 _SUBDIRS = @SUBDIRS@
20 SUBDIRS = $(_SUBDIRS:=-$(VER))
21 all:
22 %:; $(MAKE) `printf '%s_$@_ ' $(SUBDIRS)`
23 _words = $(subst _, ,$1)
24 _dir = $(firstword $(call _words,$@))
25 _targ = $(lastword $(call _words,$@))
26 %_:; $(MAKE) -C $(_dir) $(_targ) $(EXTRA_TARGETS)