forked from blacktop/ipsw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
163 lines (134 loc) · 6.66 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
REPO=blacktop
NAME=ipsw
CUR_VERSION=$(shell gh release view --json tagName -q '.tagName')
LOCAL_VERSION=$(shell svu current)
NEXT_VERSION=$(shell svu patch)
GO_BIN=go
.PHONY: build-deps
build-deps: ## Install the build dependencies
@echo " > Installing build deps"
brew install $(GO_BIN) goreleaser zig unicorn libusb go-swagger/go-swagger/go-swagger
.PHONY: dev-deps
dev-deps: ## Install the dev dependencies
@echo " > Installing dev deps"
$(GO_BIN) install golang.org/x/tools/...@latest
$(GO_BIN) install github.com/spf13/cobra-cli@latest
$(GO_BIN) get -d golang.org/x/tools/cmd/cover
$(GO_BIN) get -d golang.org/x/tools/cmd/stringer
$(GO_BIN) install github.com/caarlos0/[email protected]
.PHONY: x86-brew
x86-brew: ## Install the x86_64 homebrew on Apple Silicon
mkdir /tmp/homebrew
cd /tmp; curl -L https://github.com/Homebrew/brew/tarball/master | tar xz --strip 1 -C homebrew
sudo mv /tmp/homebrew /usr/local/homebrew
arch -x86_64 /usr/local/homebrew/bin/brew install unicorn libusb
.PHONY: setup
setup: build-deps dev-deps ## Install all the build and dev dependencies
.PHONY: dry_release
dry_release: ## Run goreleaser without releasing/pushing artifacts to github
@echo " > Creating Pre-release Build ${NEXT_VERSION}"
@GOROOT=$(shell go env GOROOT) goreleaser build --id darwin_extras_build --clean --timeout 60m --snapshot --single-target --output dist/ipsw
.PHONY: snapshot
snapshot: ## Run goreleaser snapshot
@echo " > Creating Snapshot ${NEXT_VERSION}"
@GOROOT=$(shell go env GOROOT) goreleaser --clean --timeout 60m --snapshot
.PHONY: release
release: ## Create a new release from the NEXT_VERSION
@echo " > Creating Release ${NEXT_VERSION}"
@hack/make/release ${NEXT_VERSION}
@GOROOT=$(shell go env GOROOT) goreleaser --clean --timeout 60m --skip=validate
@echo " > Update Portfile ${NEXT_VERSION}"
@hack/make/portfile ../ports
.PHONY: release-minor
release-minor: ## Create a new minor semver release
@echo " > Creating Release $(shell svu minor)"
@hack/make/release $(shell svu minor)
@GOROOT=$(shell go env GOROOT) goreleaser --clean --timeout 60m --skip=validate
.PHONY: destroy
destroy: ## Remove release from the CUR_VERSION
@echo " > Deleting Release ${LOCAL_VERSION}"
rm -rf dist
git tag -d ${LOCAL_VERSION}
git push origin :refs/tags/${LOCAL_VERSION}
build: ## Build ipsw
@echo " > Building ipsw"
@$(GO_BIN) mod download
@CGO_ENABLED=1 $(GO_BIN) build -ldflags "-s -w -X github.com/blacktop/ipsw/cmd/ipsw/cmd.AppVersion=$(CUR_VERSION) -X github.com/blacktop/ipsw/cmd/ipsw/cmd.AppBuildTime=$(date -u +%Y%m%d)" ./cmd/ipsw
build-ios: ## Build ipsw for iOS
@echo " > Building ipsw"
@$(GO_BIN) mod download
@CGO_ENABLED=1 GOOS=ios GOARCH=arm64 CC=$(shell go env GOROOT)/misc/ios/clangwrap.sh $(GO_BIN) build -ldflags "-s -w -X github.com/blacktop/ipsw/cmd/ipsw/cmd.AppVersion=$(CUR_VERSION) -X github.com/blacktop/ipsw/cmd/ipsw/cmd.AppBuildTime==$(date -u +%Y%m%d)" ./cmd/ipsw
@codesign --entitlements hack/make/data/ent.plist -s - -f ipsw
build-linux: ## Build ipsw (linux)
@echo " > Building ipsw (linux)"
@$(GO_BIN) mod download
@CGO_ENABLED=1 GOOS=linux GOARCH=arm64 CC='zig cc -target aarch64-linux-musl' CXX='zig c++ -target aarch64-linux-musl' $(GO_BIN) build -ldflags "-s -w -X github.com/blacktop/ipsw/cmd/ipsw/cmd.AppVersion=$(CUR_VERSION) -X github.com/blacktop/ipsw/cmd/ipsw/cmd.AppBuildTime=$(date -u +%Y%m%d)" ./cmd/ipsw
@echo " > Building ipswd (linux)"
@CGO_ENABLED=0 GOOS=linux GOARCH=arm64 $(GO_BIN) build -ldflags "-s -w --X github.com/blacktop/ipsw/api/types.BuildVersion=$(CUR_VERSION) -X github.com/blacktop/ipsw/api/types.BuildTime=$(date -u +%Y%m%d)" ./cmd/ipswd
.PHONY: docs
docs: ## Build the cli docs
@echo " > Updating CLI Docs"
go generate ./...
hack/make/docs
.PHONY: docs-search
docs-search: ## Build/Update the docs search index
@echo " > Updating Docs Search Index"
@docker run -t --rm \
-e MEILISEARCH_HOST_URL=$(MEILISEARCH_HOST_URL) \
-e MEILISEARCH_API_KEY=$(MEILISEARCH_API_KEY) \
-v $(PWD)/hack/scripts/scraper.json:/docs-scraper/scraper.json \
getmeili/docs-scraper:v0.12.8 pipenv run ./docs_scraper ./scraper.json
# @curl -X POST "$(MEILISEARCH_HOST_URL)/swap-indexes" -H "Authorization: Bearer $(MEILISEARCH_API_KEY)" -H "Content-Type: application/json" --data-binary '[ { "indexes": ["docs-v1", "docs-v1-staging"] } ]'
.PHONY: test-docs
test-docs: ## Start local server hosting docusaurus docs
@echo " > Testing Docs"
cd www; npm start
.PHONY: update_mod
update_mod: ## Update go.mod file
@echo " > Updating go.mod"
rm go.sum || true
$(GO_BIN) mod download
$(GO_BIN) mod tidy
.PHONY: update_devs
update_devs: ## Parse XCode database for new devices
@echo " > Updating device_traits.json"
$(GO_BIN) run ./cmd/ipsw/main.go device-list-gen pkg/xcode/data/device_traits.json
.PHONY: update_keys
update_keys: ## Scrape the iPhoneWiki for AES keys
@echo " > Updating firmware_keys.json"
CGO_ENABLED=0 $(GO_BIN) run ./cmd/ipsw/main.go key-list-gen pkg/info/data/firmware_keys.json
.PHONY: update_frida
update_frida: ## Updates the frida-core-devkits used in the frida cmd
@echo " > Updating frida-core-devkits"
@hack/make/frida-deps
.PHONY: docker
docker: ## Build docker image
@echo " > Building Docker Image"
docker build --build-arg VERSION=$(NEXT_VERSION) -t $(REPO)/$(NAME):$(NEXT_VERSION) .
.PHONY: docker-daemon
docker-daemon: ## Build daemon docker image
@echo " > Building Docker Image"
docker build --build-arg VERSION=$(NEXT_VERSION) -t $(REPO)/$(NAME)-daemon:$(NEXT_VERSION) -f Dockerfile.daemon .
.PHONY: docker-tag
docker-tag: docker ## Tag docker image
docker tag $(REPO)/$(NAME):$(NEXT_VERSION) docker.pkg.github.com/blacktop/ipsw/$(NAME):$(NEXT_VERSION)
.PHONY: docker-ssh
docker-ssh: ## SSH into docker image
@docker run --init -it --rm --device /dev/fuse --cap-add SYS_ADMIN --mount type=tmpfs,destination=/app -v `pwd`/test-caches/ipsws:/data --entrypoint=bash $(REPO)/$(NAME):$(NEXT_VERSION)
.PHONY: docker-push
docker-push: docker-tag ## Push docker image to github
docker push docker.pkg.github.com/blacktop/ipsw/$(NAME):$(NEXT_VERSION)
.PHONY: docker-test
docker-test: ## Run docker test
@echo " > Testing Docker Image"
docker run --init -it --rm --device /dev/fuse --cap-add=SYS_ADMIN -v `pwd`:/data $(REPO)/$(NAME):$(NEXT_VERSION) -V extract --dyld /data/iPhone12_1_13.2.3_17B111_Restore.ipsw
clean: ## Clean up artifacts
@echo " > Cleaning"
rm *.tar || true
rm *.ipsw || true
rm kernelcache.release.* || true
rm -rf dist
# Absolutely awesome: http://marmelab.com/blog/2016/02/29/auto-documented-makefile.html
help:
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
.DEFAULT_GOAL := help