forked from AuroraMiddleware/gtk
11 lines
138 B
Bash
Executable File
11 lines
138 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
mkdir -p _ccache
|
|
export CCACHE_BASEDIR="$(pwd)"
|
|
export CCACHE_DIR="${CCACHE_BASEDIR}/_ccache"
|
|
|
|
./autogen.sh
|
|
make -j8
|