tags:

views:

114

answers:

2

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)

A: 

$xcodebuild install

from the command line within the project directory, just like make.

cdespinosa
Well, I mean "where to click in xcode" to run "make install" without using shell
teamon
A: 

you can create a new external target and call make install or xcodebuild install

webclimber