pok3r-custom / pok3r_re_firmware

Reverse engineering project for the POK3R and related keyboards.
219 stars 17 forks source link

Noob alert #10

Closed QuadDepo closed 6 years ago

QuadDepo commented 6 years ago

Hey i was wondering if someone could tell me the stept build it on OS sierra.

I donwloade cmake with brew, but the command make all doesnt seem to do anything

➜ pok3r_re_firmware (master) ✗ make clean make: *** No rule to make target clean'. Stop.

theyy29 commented 6 years ago

Are you just running make in the project directory? CMake works a little differently. First, make a directory outside the project directory, then, call cmake from that directory with the project directory as an argument. Then run make.

e.g.

# starting from project directory
cd ..
mkdir pok3r_re_firmware-build
cd pok3r_re_firmware-build
cmake ../pok3r_re_firmware
make