Makefile.inc1: Do not continue the build upon an error in various cases.
authorSascha Wildner <saw@online.de>
Sat, 26 May 2018 16:41:33 +0000 (18:41 +0200)
committerSascha Wildner <saw@online.de>
Sat, 26 May 2018 19:08:04 +0000 (21:08 +0200)
commit99a9a126b5f69fa1568ff40e204d5db5a3791993
treefff863b03c2b08aa9f5c419a6bce33eddf81af8a
parentfda30e02bc0f8ddfe436df9a4fa2b0bacb9287fd
Makefile.inc1: Do not continue the build upon an error in various cases.

Before this commit, the build would limp on even though a library
failed building, for example, leading to sometimes confusing followup
errors later in the build. It was also more difficult to see directly
why a build really failed in the first place.

To prevent this, make various targets use '&&' instead of ';' to
chain commands.

People wanting the build to carry on for as long as possible, can
always use make's -k option.
Makefile.inc1