mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-11 18:33:18 +08:00
11 lines
75 B
Bash
11 lines
75 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
rm -rf build
|
||
|
mkdir build
|
||
|
(
|
||
|
cd build
|
||
|
cmake ..
|
||
|
make -j
|
||
|
)
|
||
|
|