Skip to content

Commit

Permalink
update makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
tanner0101 committed Mar 22, 2016
1 parent 7ecba9c commit e1b1474
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
9 changes: 7 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,13 @@ run: .build/VaporApp
$(RUN);

install: $(LIBVAPOR)
mdkir /usr/local/opt/vapor/lib
cp .build/*.so /usr/local/opt/vapor/lib/
mkdir /usr/local/opt; \
mkdir /usr/local/opt/vapor; \
mkdir /usr/local/opt/vapor/lib; \
mkdir /usr/local/opt/vapor/include; \
cp -R .build/lib* /usr/local/opt/vapor/lib; \
cp -R .build/*.swiftdoc /usr/local/opt/vapor/include; \
cp -R .build/*.swiftmodule /usr/local/opt/vapor/include; \

$(LIBVAPOR): $(LIBHUMMINGBIRD) $(LIBJAY) $(LIBLIBC) Sources/Vapor/**/*.swift
cd .build; \
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ A Laravel/Lumen Inspired Web Framework for Swift that works on iOS, OS X, and Ub

## Badges

[![Build Status](https://img.shields.io/travis/qutheory/vapor.svg?style=flat-square)](https://travis-ci.org/qutheory/vapor)
[![Issue Stats](http://issuestats.com/github/qutheory/vapor/badge/pr?style=flat-square)](http://issuestats.com/github/qutheory/vapor)
[![PRs Welcome](https://img.shields.io/badge/prs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com)
[![Slack Status](http://slack.tanner.xyz:8085/badge.svg?style=flat-square)](http://slack.tanner.xyz:8085)
[![Build Status](https://api.travis-ci.org/qutheory/vapor.svg?branch=master)](https://travis-ci.org/qutheory/vapor)
[![Issue Stats](http://issuestats.com/github/qutheory/vapor/badge/pr)](http://issuestats.com/github/qutheory/vapor)
[![PRs Welcome](https://img.shields.io/badge/prs-welcome-brightgreen.svg)](http://makeapullrequest.com)
[![Slack Status](http://slack.tanner.xyz:8085/badge.svg)](http://slack.tanner.xyz:8085)

## Introduction

Expand Down

0 comments on commit e1b1474

Please sign in to comment.