-
Notifications
You must be signed in to change notification settings - Fork 10
/
Makefile
95 lines (80 loc) · 2.73 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# **********************************************************************
#
# Copyright (c) 2003-2016 ZeroC, Inc. All rights reserved.
#
# This copy of Ice is licensed to you under the terms described in the
# ICE_LICENSE file included in this distribution.
#
# **********************************************************************
#
# Select an installation base directory. The directory will be created
# if it does not exist.
#
prefix ?= /opt/IceE-$(VERSION)
#
# Define OPTIMIZE as yes if you want to build with optimization. Otherwise
# Ice-E is built with debug information.
#
#OPTIMIZE = yes
#
# The target operating system for the build, supported values are 'yocto'
# and 'debian'.
#
#ICEE_TARGET_OS ?= debian
#
# If you want to build Ice-E using an Ice binary distribution
# set ICE_HOME to point to your Ice install location.
#
#ICE_HOME = /usr
#
# The "root directory" for runpath embedded in executables. Can be set
# to change the runpath added to Ice executables. The default is
# platform dependent.
#
#EMBEDDED_RUNPATH_PREFIX ?= /opt/IceE-3.6
#
# Define EMBEDDED_RUNPATH as no if you don't want any RPATH added to
# the executables.
#
EMBEDDED_RUNPATH ?= yes
#
# Define NEW_DTAGS as yes if you want the linker to enable the new style
# dtags, this will cause the linker to add a runpath entry instead of
# a rpath entry. This only applies to gcc builds on Linux.
#
NEW_DTAGS ?= no
#
# Default mutex protocol, one of 'PrioNone' or 'PrioInherit'.
#
#DEFAULT_MUTEX_PROTOCOL ?= PrioNone
#
# Define CPP11 as yes if you want to enable C++11 features.
#
#CPP11 ?= yes
#
# To build test suite against static libraries define BUILD_TESTSUITE
# as static, to build test suite against dynamic libraries define
# BUILD_TESTSUITE as dynamic.
#
BUILD_TESTSUITE ?= static
#
# Target to deploy the test suite.
#
#DEPLOY_TARGET ?= [email protected]:/home/debian/icee
###############################################################################
# #
# Debian specific options #
# #
###############################################################################
#
# Debian arch tuple of the host machine. Supported values are
# 'arm-linux-gnueabihf' and 'x86_64-linux-gnu'.
#
# Set it to 'arm-linux-gnueabihf' if you are cross-compiling for
# armhf.
#
HOST ?= arm-linux-gnueabihf
#
# Include common definitions.
#
include $(CURDIR)/config/Make.common.rules