libui/haiku/GNUosspecific.mk

18 lines
267 B
Makefile
Raw Normal View History

2015-11-17 09:46:58 -06:00
# 16 october 2015
EXESUFFIX =
LIBSUFFIX = .so
OSHSUFFIX = .hpp
2015-12-11 19:26:26 -06:00
TOOLCHAIN = gcc
2015-11-17 10:55:52 -06:00
# TODO
USESSONAME = 0
2015-11-17 12:44:57 -06:00
# Force GCC 4; GCC 2 is not supported.
2015-11-17 10:55:52 -06:00
gccver = $(shell $(CC) --version | sed 's/-.*//g')
ifeq ($(gccver),2.95.3)
2015-11-17 12:44:57 -06:00
# TODO warn?
CC = gcc-x86
CXX = g++-x86
2015-11-17 10:55:52 -06:00
endif