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