diff options
author | Yann E. MORIN <yann.morin.1998@anciens.enib.fr> | 2010-10-31 17:35:09 +0100 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2010-11-03 23:23:31 +0100 |
commit | 2d239bbe2771aa9f8ec5e02241a93c63195489a7 (patch) | |
tree | 9335e3952bd838b2b31e017486134d2f2cb9e2a4 | |
parent | 763d4ef9ea66312671f56fd35aeab7a53a173980 (diff) |
Makefile: move .NOTPARALLEL
Move it down, users should not mess with it.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r-- | Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -18,13 +18,14 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # -# This top-level Makefile can *not* be executed in parallel -.NOTPARALLEL: - #-------------------------------------------------------------- # Just run 'make menuconfig', configure stuff, then run 'make'. # You shouldn't need to mess with anything beyond this point... #-------------------------------------------------------------- + +# This top-level Makefile can *not* be executed in parallel +.NOTPARALLEL: + # absolute path TOPDIR:=$(shell pwd) CONFIG_CONFIG_IN=Config.in |