How to run "make install" from Xcode
I have custom Makefile and External build target in Xcode. When I click 开发者_如何学Python"Build" it runs "make" When I click "Clear" it runs "make clean"
How to run "make install" (or any other target) from Xcode?
(btw, this is AVR project and xcode project file was created using avr-project tool shipped with Crosspack-AVR)
$xcodebuild install
from the command line within the project directory, just like make.
you can create a new external target and call make install or xcodebuild install
精彩评论