Skip to content

Commit

Permalink
Disable parallel make
Browse files Browse the repository at this point in the history
A problem that I observed (ages ago but only recently noted) in the
mkiocccentry repo is that make -j does not work right. It is highly
likely that this will be a problem here too so I have set this up now
for later on.
  • Loading branch information
xexyl committed Jul 9, 2024
1 parent 0c9ba66 commit 682d19c
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# Disable parallel Makefile execution
#
# We do not support parallel make. We have found most
# parallel make systems do not get the rule dependency order
# correct, resulting in a failed attempt to compile.
#
.NOTPARALLEL:


# compile do-nothing jparse.c - hopefully placate the GitHub workflow for now
all: jparse.c
${CC} jparse.c -o jparse
Expand Down

0 comments on commit 682d19c

Please sign in to comment.