speedup make

This commit is contained in:
root 2018-11-02 10:05:08 +00:00
parent c64aa18ba4
commit 6c061870c8
1 changed files with 4 additions and 4 deletions

View File

@ -4,22 +4,22 @@ rootdir=/opt/tor_static
#build zlib
cd $rootdir/zlib/repo/
`cat ../config`
make && make install
make -j $(nproc) && make install

#build libevent
cd $rootdir/libevent/repo/
./autogen.sh
`cat ../config`
make && make install
make -j $(nproc) && make install

#build openssl
cd $rootdir/openssl/repo/
./autogen.sh
`cat ../config`
make && make install
make -j $(nproc) && make install

#build static tor
cd $rootdir/tor
./autogen.sh
`cat ../config`
make && make install
make -j $(nproc) && make install