mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-02-25 16:37:51 +01:00
- Linux: Add make build files to binary distribution (issue #939). git-svn-id: https://chromiumembedded.googlecode.com/svn/branches/1453@1187 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
8 lines
140 B
Bash
Executable File
8 lines
140 B
Bash
Executable File
#!/bin/bash
|
|
if [ -z "$1" ]; then
|
|
echo "ERROR: Please specify a build target: Debug or Release"
|
|
else
|
|
make -j8 cefclient BUILDTYPE=$1
|
|
fi
|
|
|