summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAdam Ierymenko <adam.ierymenko@gmail.com>2017-01-19 15:05:26 -0800
committerAdam Ierymenko <adam.ierymenko@gmail.com>2017-01-19 15:05:26 -0800
commitd79f792e6fab5503bc70ad31cdf77ac935061bb7 (patch)
tree787dbaebbe93b9d137ae2f12d15c57add7d6329e /Makefile
parent7b231b38b02d74afff7ea9cde6ea5c4a8cee5103 (diff)
downloadinfinitytier-d79f792e6fab5503bc70ad31cdf77ac935061bb7.tar.gz
infinitytier-d79f792e6fab5503bc70ad31cdf77ac935061bb7.zip
OpenBSD fixes, workaround for apparent libstdc++ bug.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 4bbd5ad2..2f11e5fa 100644
--- a/Makefile
+++ b/Makefile
@@ -13,10 +13,12 @@ endif
ifeq ($(OSTYPE),FreeBSD)
CC=gcc
CXX=g++
- include make-freebsd.mk
+ ZT_BUILD_PLATFORM=7
+ include make-bsd.mk
endif
ifeq ($(OSTYPE),OpenBSD)
CC=egcc
CXX=eg++
- include make-freebsd.mk
+ ZT_BUILD_PLATFORM=9
+ include make-bsd.mk
endif