7 lines
84 B
Bash
7 lines
84 B
Bash
|
#!/bin/bash
|
||
|
pushd subprojects/protobuf
|
||
|
./configure
|
||
|
make
|
||
|
make install
|
||
|
make distclean
|