-
Notifications
You must be signed in to change notification settings - Fork 3
/
Makefile
32 lines (23 loc) · 831 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
help:
@echo "Please use 'make <target>' where <target> is one of"
@echo " install to install all dependencies"
@echo " install_licence_plist to install LicensePlist"
@echo " license to generate license plist file"
@echo " install_swiftgen to install SwiftGen"
@echo " asset to generate Asset swift file"
@echo " git_rm to reset gitignore cache when updating file"
# Installation
install: install_licence_plist install_swiftgen
# LicensePlist
install_licence_plist:
brew install mono0926/license-plist/license-plist
license:
license-plist --output-path ./Resources/License
# SwiftGen
install_swiftgen:
brew install swiftgen
asset:
swiftgen
# Git
git_rm:
git rm -r --cached .