mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-11-29 18:37:41 +08:00
17 lines
219 B
Bash
Executable File
17 lines
219 B
Bash
Executable File
#!/bin/sh
|
|
export ENV_CC=cosmocc
|
|
export ENV_CPP=cosmoc++
|
|
|
|
cd lib_acl; make -j 4;
|
|
cd samples; make;
|
|
cd ../..
|
|
|
|
cd lib_protocol; make -j 4;
|
|
cd samples; make;
|
|
cd ../..
|
|
|
|
cd lib_acl_cpp; make -j 10
|
|
cd samples; make;
|
|
cd ../..
|
|
|