mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2025-01-18 03:52:11 +01:00
b33d093a7a
Since msysGit lacks the install command, simple cp -f replacement is provided. Don't forget to copy it into the msysGit bin subdirectory. Introduced CLEAN_BUILD=NO make option to test packaging w/o cleaning. Recommended for test builds only, not for production run. make -j works great after PyMite dependency fix by commit 0005729056e0980a859a990455f4823960851449 So comment is updated as well.
16 lines
471 B
Bash
16 lines
471 B
Bash
#!/bin/sh
|
|
#
|
|
# simple install command replacement for Windows
|
|
#
|
|
# This file should be put into C:\Program Files\Git\bin\ subdirectory
|
|
# (or similar, depeding on where the msysGit package was installed)
|
|
# to provide a make command to unix-like build environment on Windows.
|
|
#
|
|
# See also:
|
|
# README.txt
|
|
# http://wiki.openpilot.org/display/Doc/GCS+Development+on+Windows
|
|
# http://wiki.openpilot.org/display/Doc/Firmware+Development+on+Windows
|
|
#
|
|
|
|
cp -f $*
|