aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorcos <cos>2025-02-15 09:32:39 +0100
committerThijs Schreijer <thijs@thijsschreijer.nl>2025-02-25 12:47:59 +0100
commitf5f01c663816235bed38b3056771c6898744f567 (patch)
treec0281134ff27832d0ad6c8da2ea4b721e592798d /Makefile
parentb8b57ba75020c224ae6c5f068cd3514c9a4d7d91 (diff)
downloadluasystem-f5f01c663816235bed38b3056771c6898744f567.tar.gz
luasystem-f5f01c663816235bed38b3056771c6898744f567.tar.bz2
luasystem-f5f01c663816235bed38b3056771c6898744f567.zip
Add support for OpenBSD+FreeBSD platforms
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index dd20ee9..9667829 100644
--- a/Makefile
+++ b/Makefile
@@ -18,12 +18,15 @@ endif
18ifeq ($(UNAME_S),FreeBSD) 18ifeq ($(UNAME_S),FreeBSD)
19 PLAT=freebsd 19 PLAT=freebsd
20endif 20endif
21ifeq ($(UNAME_S),OpenBSD)
22 PLAT=openbsd
23endif
21ifeq ($(patsubst MINGW%,MINGW,$(UNAME_S)),MINGW) 24ifeq ($(patsubst MINGW%,MINGW,$(UNAME_S)),MINGW)
22 PLAT=mingw 25 PLAT=mingw
23endif 26endif
24endif 27endif
25PLAT?= linux 28PLAT?= linux
26PLATS= macosx linux win32 mingw freebsd 29PLATS= macosx linux win32 mingw freebsd openbsd
27 30
28all: $(PLAT) 31all: $(PLAT)
29 32