1
0
mirror of https://github.com/fumiama/terasu-cloudflared.git synced 2026-06-12 22:40:32 +08:00

Add suport for OpenBSD (#916)

This commit is contained in:
pufferfish
2023-04-04 16:14:51 +01:00
committed by GitHub
parent 39ed5dc182
commit bfbe426905

View File

@@ -82,6 +82,8 @@ else ifeq ($(LOCAL_OS),windows)
TARGET_OS ?= windows TARGET_OS ?= windows
else ifeq ($(LOCAL_OS),freebsd) else ifeq ($(LOCAL_OS),freebsd)
TARGET_OS ?= freebsd TARGET_OS ?= freebsd
else ifeq ($(LOCAL_OS),openbsd)
TARGET_OS ?= openbsd
else else
$(error This system's OS $(LOCAL_OS) isn't supported) $(error This system's OS $(LOCAL_OS) isn't supported)
endif endif