Not sure if this is the right place to put this, but here it is anyway.
For a while now I've been struggling to get multiple steppers to move and arrive at their destinations simultaneously (For a CNC project), but then I discovered to AccelStepper and MultiStepper libraries.
Downloading the AccelStepper library was easy enough -- just follow the link on their Index page and it will download a zip file of it. Multistepper, on the other hand, has no index. Their file directory only contains the MultiStepper.h file -- no .cpp to be found.
#include <AccelStepper.h>
// Define some steppers and the pins the will use
AccelStepper stepper1; // Defaults to 4 pins on 2, 3, 4, 5
AccelStepper stepper2(4, 6, 7, 8, 9);
AccelStepper stepper3(2, 10, 11);
The .cpp may not required. Build a folder titled \Arduino\libraries\AccelStepper and copy the single .h file there. Restart the IDE.