10 lines
182 B
Bash
10 lines
182 B
Bash
#!/bin/sh
|
|
|
|
# Linux build
|
|
|
|
make distclean || echo clean
|
|
rm -f config.status
|
|
./autogen.sh || echo done
|
|
CFLAGS="-O3 -march=haswell -maes -Wall" ./configure --with-curl
|
|
make -j $(nproc)
|