diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2018-04-12 20:00:01 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2018-04-12 20:00:01 -0700 |
commit | b82107396897d539fbd363887b88df82bc73368d (patch) | |
tree | 08c589faf8583aee193847460f53e06be5e666a3 /Makefile | |
parent | 69d9874359752a68a61055c1117a06aae7cb4f1d (diff) | |
download | txr-b82107396897d539fbd363887b88df82bc73368d.tar.gz txr-b82107396897d539fbd363887b88df82bc73368d.tar.bz2 txr-b82107396897d539fbd363887b88df82bc73368d.zip |
build: prevent make parallelization.
* Makefile: add .NOTPARALLEL: special target.
This Makfile doesn't support parallel builds; it relies
on left-to-right execution of prerequisites in some places.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -24,6 +24,8 @@ # OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +.NOTPARALLEL: + -include config.make VERBOSE := |