diff options
author | cos <cos> | 2025-02-15 09:32:39 +0100 |
---|---|---|
committer | Thijs Schreijer <thijs@thijsschreijer.nl> | 2025-02-25 12:47:59 +0100 |
commit | f5f01c663816235bed38b3056771c6898744f567 (patch) | |
tree | c0281134ff27832d0ad6c8da2ea4b721e592798d /Makefile | |
parent | b8b57ba75020c224ae6c5f068cd3514c9a4d7d91 (diff) | |
download | luasystem-f5f01c663816235bed38b3056771c6898744f567.tar.gz luasystem-f5f01c663816235bed38b3056771c6898744f567.tar.bz2 luasystem-f5f01c663816235bed38b3056771c6898744f567.zip |
Add support for OpenBSD+FreeBSD platforms
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -18,12 +18,15 @@ endif | |||
18 | ifeq ($(UNAME_S),FreeBSD) | 18 | ifeq ($(UNAME_S),FreeBSD) |
19 | PLAT=freebsd | 19 | PLAT=freebsd |
20 | endif | 20 | endif |
21 | ifeq ($(UNAME_S),OpenBSD) | ||
22 | PLAT=openbsd | ||
23 | endif | ||
21 | ifeq ($(patsubst MINGW%,MINGW,$(UNAME_S)),MINGW) | 24 | ifeq ($(patsubst MINGW%,MINGW,$(UNAME_S)),MINGW) |
22 | PLAT=mingw | 25 | PLAT=mingw |
23 | endif | 26 | endif |
24 | endif | 27 | endif |
25 | PLAT?= linux | 28 | PLAT?= linux |
26 | PLATS= macosx linux win32 mingw freebsd | 29 | PLATS= macosx linux win32 mingw freebsd openbsd |
27 | 30 | ||
28 | all: $(PLAT) | 31 | all: $(PLAT) |
29 | 32 | ||