mirror of
https://github.com/woodchen-ink/webp_server_go.git
synced 2025-07-18 21:52:01 +08:00
15 lines
182 B
Makefile
15 lines
182 B
Makefile
ifeq ($(shell uname),Linux)
|
|
OS=linux
|
|
else
|
|
OS=darwin
|
|
endif
|
|
|
|
ifeq ($(shell uname -m),aarch64)
|
|
ARCH=arm64
|
|
else
|
|
ARCH=amd64
|
|
endif
|
|
|
|
all: build
|
|
build:
|
|
./scripts/build.sh $(OS) $(ARCH)
|