Reputation: 331
I have custom Makefile and External build target in Xcode. When I click "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)
Upvotes: 4
Views: 4230
Reputation: 20799
$xcodebuild install
from the command line within the project directory, just like make.
Upvotes: 5
Reputation: 2640
you can create a new external target and call make install or xcodebuild install
Upvotes: 0