mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-12 04:26:41 +08:00
10 lines
80 B
Bash
Executable file
10 lines
80 B
Bash
Executable file
#!/bin/bash
|
|
|
|
cd ..
|
|
rm -rf build
|
|
mkdir build
|
|
(
|
|
cd build
|
|
cmake ..
|
|
make -j
|
|
)
|