Skip to content

Commit b8dda14

Browse files
committed
using make instead of gmake to make it more portable
1 parent 2c32c77 commit b8dda14

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

jscomp/build.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ make -r bin/ocamlscript
2020

2121
echo "Making runtime" >> build.compile
2222

23-
cd ./runtime; gmake all 2>> ../build.compile ; gmake depend; cd ..
23+
cd ./runtime; make all 2>> ../build.compile ; make depend; cd ..
2424
echo "Making runtime Finished" >> build.compile
2525

2626
echo "Remaking standard library" >> build.compile
@@ -34,11 +34,11 @@ TARGET=a
3434
echo ">>EACH FILE TESTING" >> build.compile
3535
cd ./test/
3636
# ./build.sh 2>> ../build.compile
37-
gmake $TARGET.cmo 2>> ../build.compile
37+
make $TARGET.cmo 2>> ../build.compile
3838

3939
cat $TARGET.js >> ../build.compile
40-
gmake -j30 all 2>>../build.compile
41-
gmake depend 2>>../build.compile
40+
make -j30 all 2>>../build.compile
41+
make depend 2>>../build.compile
4242
echo "<<Test finished" >> ../build.compile
4343
cd ..
4444

jscomp/stdlib/build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/sh
22
set -e
33

4-
gmake -r -j20 all 2>> ../build.compile
4+
make -r -j20 all 2>> ../build.compile
55

0 commit comments

Comments
 (0)