1). It fixes several failures in the compile-wrap script on linux where ln and rm need to have the -f flag to for compilation to proceed.
2). It defaults to commenting out the JP_OPT option from makefile.std (i.e. English version now default).
3). It adds Linux temporary files to the .gitignore.
4). It adds some documentation to the readme about avoiding a race condition in the makefile when compiling with parallel make (i.e. -jN N>1).
This PR addresses several concerns.
1). It fixes several failures in the
compile-wrap
script on linux whereln
andrm
need to have the-f
flag to for compilation to proceed. 2). It defaults to commenting out theJP_OPT
option frommakefile.std
(i.e. English version now default). 3). It adds Linux temporary files to the.gitignore
. 4). It adds some documentation to the readme about avoiding a race condition in the makefile when compiling with parallel make (i.e.-jN
N>1).