summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/linux/run.sh3
-rwxr-xr-xscripts/osx/run.sh3
2 files changed, 6 insertions, 0 deletions
diff --git a/scripts/linux/run.sh b/scripts/linux/run.sh
index c4731b97ec..0412459a18 100755
--- a/scripts/linux/run.sh
+++ b/scripts/linux/run.sh
@@ -43,6 +43,9 @@ git submodule update --init styles
mapbox_time "compile_program" \
make linux -j${JOBS} BUILDTYPE=${BUILDTYPE}
+mapbox_time "compile_render_binary" \
+make render -j${JOBS} BUILDTYPE=${BUILDTYPE}
+
mapbox_time "compile_tests" \
make test -j${JOBS} BUILDTYPE=${BUILDTYPE}
diff --git a/scripts/osx/run.sh b/scripts/osx/run.sh
index b84ed04c21..f386318c8b 100755
--- a/scripts/osx/run.sh
+++ b/scripts/osx/run.sh
@@ -23,5 +23,8 @@ git submodule update --init styles
mapbox_time "compile_program" \
make xosx -j${JOBS} BUILDTYPE=${BUILDTYPE}
+mapbox_time "compile_render_binary" \
+make xrender -j${JOBS} BUILDTYPE=${BUILDTYPE}
+
mapbox_time "compile_tests" \
make xtest -j${JOBS} BUILDTYPE=${BUILDTYPE}