mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-11-08 23:27:15 -05:00
16 lines
291 B
Bash
Executable File
16 lines
291 B
Bash
Executable File
#!/bin/bash
|
|
|
|
: >> "$filelist"
|
|
|
|
if [ -d isa-l_crypto/.git ]; then
|
|
cd isa-l_crypto
|
|
git reset --hard
|
|
xargs -r rm -f < "$filelist"
|
|
make clean
|
|
else
|
|
git clone https://github.com/intel/isa-l_crypto.git isa-l_crypto
|
|
cd isa-l_crypto
|
|
fi
|
|
: > "$filelist"
|
|
make -f Makefile.unx -j
|