mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-16 06:43:29 +08:00
15 lines
167 B
Bash
Executable file
15 lines
167 B
Bash
Executable file
#!/bin/bash
|
|
|
|
(
|
|
cd ..
|
|
rm -rf build
|
|
mkdir build
|
|
(
|
|
cd build
|
|
cmake ..
|
|
make -j
|
|
)
|
|
rm proxmark3
|
|
ln -s build/proxmark3 .
|
|
)
|
|
ln -s ../pyscripts/pm3.py
|