mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-07-31 03:50:45 -07:00
16 lines
195 B
Bash
Executable file
16 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
|