Skip to content

Commit

Permalink
add "install" Makefile target
Browse files Browse the repository at this point in the history
  • Loading branch information
holtrop committed Jul 11, 2012
1 parent 951729a commit 3179842
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Makefile
Expand Up @@ -18,11 +18,17 @@
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.

PREFIX ?= /usr/local

all :
cd agent && $(MAKE)
cd libwinpty && $(MAKE)
cd unix-adapter && $(MAKE)

install : all
mkdir -p $(PREFIX)/bin
cp build/* $(PREFIX)/bin

clean :
cd agent && $(MAKE) clean
cd libwinpty && $(MAKE) clean
Expand Down

0 comments on commit 3179842

Please sign in to comment.