From dc5a8d44e5f9dacba2bd79dc563e13804b75b358 Mon Sep 17 00:00:00 2001 From: "Henrique N. Lengler" Date: Sun, 15 Mar 2015 16:27:00 -0300 Subject: [PATCH] Add OpenBSD option to Makefile --- build/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build/Makefile b/build/Makefile index 2ebc5db..6f4ec4c 100644 --- a/build/Makefile +++ b/build/Makefile @@ -24,6 +24,9 @@ endif ifeq ($(UNAME_S), FreeBSD) -include $(CFG_DIR)/systems/FreeBSD.mk endif +ifeq ($(UNAME_S), OpenBSD) + -include $(CFG_DIR)/systems/FreeBSD.mk +endif ifeq ($(UNAME_S), Darwin) -include $(CFG_DIR)/systems/Darwin.mk endif