Skip to content

Commit

Permalink
Merge pull request #4 from holtrop/master
Browse files Browse the repository at this point in the history
added an "install" Makefile target
  • Loading branch information
rprichard committed Jul 13, 2012
2 parents 951729a + 3179842 commit 9b09d32
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
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 9b09d32

Please sign in to comment.