Marshall Greenblatt b30dbf06fb Merge revision 1186 changes:
- 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
2013-04-08 01:35:54 +00:00

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