mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-04 20:50:37 -08:00
17 lines
195 B
Bash
Executable File
17 lines
195 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
|
|
ln -s ../lualibs/dkjson.lua
|