https://github.com/mustafagunes/ios-env
A small makefile for the iOS development process that makes it easy.
https://github.com/mustafagunes/ios-env
ios-env makefile shell
Last synced: 5 months ago
JSON representation
A small makefile for the iOS development process that makes it easy.
- Host: GitHub
- URL: https://github.com/mustafagunes/ios-env
- Owner: mustafagunes
- License: lgpl-3.0
- Created: 2019-09-17T07:10:22.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-09-17T08:48:31.000Z (almost 7 years ago)
- Last Synced: 2024-12-30T07:43:17.943Z (over 1 year ago)
- Topics: ios-env, makefile, shell
- Language: Makefile
- Homepage:
- Size: 31 MB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# iOS Environment - Makefile
[](https://travis-ci.org/joemccann/dillinger)
A small makefile for the iOS development process that makes it easy.
### Features
- git-flow
- git
- pod (pod tool install - init - install - repo update)
- carthage (carthage tool install - init - install)
- fastlane (fastlane tool install - init)
### Installation
Navigate to the main directory of your project.
*From commandline:*
```sh
$ curl -O https://raw.githubusercontent.com/mustafagunes/ios-env/master/Makefile
```
### Usage

*For default all setup:*
```sh
$ make
```
*For pod setup:*
```sh
$ make pod
```
*For carthage setup:*
```sh
$ make carthage
```
*For all setup clean:*
```sh
$ make clean
```