mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-31 07:02:53 -08:00
11 lines
80 B
Bash
Executable File
11 lines
80 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd ..
|
|
rm -rf build
|
|
mkdir build
|
|
(
|
|
cd build
|
|
cmake ..
|
|
make -j
|
|
)
|