-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathMakefile
34 lines (25 loc) · 1.02 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
# Copyright (c) Tailscale Inc & AUTHORS
# SPDX-License-Identifier: BSD-3-Clause
libtailscale.a:
go build -buildmode=c-archive
libtailscale_ios.a:
GOOS=ios GOARCH=arm64 CGO_ENABLED=1 CC=$(PWD)/swift/script/clangwrap.sh /usr/local/go/bin/go build -v -ldflags -w -tags ios -o libtailscale_ios.a -buildmode=c-archive
.PHONY: c-archive-ios
c-archive-ios: libtailscale_ios.a ## Builds libtailscale_ios.a for iOS (iOS SDK required)
.PHONY: c-archive
c-archive: libtailscale.a ## Builds libtailscale.a for the target platform
.PHONY: shared
shared: ## Builds libtailscale.so for the target platform
go build -v -buildmode=c-shared
.PHONY: clean
clean: ## Clean up build artifacts
rm -f libtailscale.a
rm -f libtailscale_ios.a
rm -f libtailscale.h
rm -f libtailscale_ios.h
.PHONY: help
help: ## Show this help
@echo "\nSpecify a command. The choices are:\n"
@grep -hE '^[0-9a-zA-Z_-]+:.*?## .*$$' ${MAKEFILE_LIST} | awk 'BEGIN {FS = ":.*?## "}; {printf " \033[0;36m%-12s\033[m %s\n", $$1, $$2}'
@echo ""
.DEFAULT_GOAL := help