Aurelien Larcher
2014-08-26 3108b2de9155001fbf961110a1f90bda88ce4169
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
#
# CDDL HEADER START
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License (the "License").
# You may not use this file except in compliance with the License.
#
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
# or http://www.opensolaris.org/os/licensing.
# See the License for the specific language governing permissions
# and limitations under the License.
#
# When distributing Covered Code, include this CDDL HEADER in each
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
# If applicable, add the following below this CDDL HEADER, with the
# fields enclosed by brackets "[]" replaced with your own identifying
# information: Portions Copyright [yyyy] [name of copyright owner]
#
# CDDL HEADER END
#
# Copyright (c) 2010, 2012, Oracle and/or its affiliates. All rights reserved.
# Copyright 2011 EveryCity Ltd. All rights reserved.
# Copyright 2013 Aurelien Larcher. All rights reserved.
#
 
#
# Rules and Macros for building open source software that uses the CMake utility
# from Kitware (http://www.cmake.org) to configure the build. 
# This file implements the same rules as configure.mk and thus uses GNU Make
# to build the components with support of multiple version (32/64 bit).
#
# To use these rules, include ../make-rules/cmake.mk in your Makefile
# and define "build", "install", and "test" targets appropriate to building
# your component.
# Ex:
#
#     build:        $(SOURCE_DIR)/build/$(MACH32)/.built \
#             $(SOURCE_DIR)/build/$(MACH64)/.built
#
#    install:    $(SOURCE_DIR)/build/$(MACH32)/.installed \
#             $(SOURCE_DIR)/build/$(MACH64)/.installed
#
#    test:        $(SOURCE_DIR)/build/$(MACH32)/.tested \
#             $(SOURCE_DIR)/build/$(MACH64)/.tested
#
# Any additional pre/post configure, build, or install actions can be specified
# in your make file by setting them in on of the following macros:
#    COMPONENT_PRE_CMAKE_ACTION, COMPONENT_POST_CMAKE_ACTION
#    COMPONENT_PRE_BUILD_ACTION, COMPONENT_POST_BUILD_ACTION
#    COMPONENT_PRE_INSTALL_ACTION, COMPONENT_POST_INSTALL_ACTION
#    COMPONENT_PRE_TEST_ACTION, COMPONENT_POST_TEST_ACTION
#
# If component specific make targets need to be used for build or install, they
# can be specified in
#    COMPONENT_BUILD_TARGETS, COMPONENT_INSTALL_TARGETS
#    COMPONENT_TEST_TARGETS
#
 
CMAKE_PREFIX =    /usr
 
#
# Define path the same way as configure.mk
# Ref: http://www.cmake.org/cmake/help/v2.8.12/cmake.html#module:GNUInstallDirs
#
 
CMAKE_BINDIR.32 =    bin
CMAKE_BINDIR.64 =    bin/$(MACH64)
CMAKE_SBINDIR.32 =    sbin
CMAKE_SBINDIR.64 =    sbin/$(MACH64)
CMAKE_LIBDIR.32 =    lib
CMAKE_LIBDIR.64 =    lib/$(MACH64)
CMAKE_INCLUDEDIR =    include
CMAKE_DATAROOTDIR =    share
CMAKE_INFODIR =        share/info
CMAKE_LOCALEDIR =    share/locale
CMAKE_MANDIR =        share/man
 
CMAKE_ENV = CONFIG_SHELL="$(CONFIG_SHELL)"
CMAKE_ENV += CC="$(CC)"
CMAKE_ENV += CXX="$(CXX)"
CMAKE_ENV += F77="$(F77)"
CMAKE_ENV += FC="$(FC)"
CMAKE_ENV += CFLAGS="$(CFLAGS)"
CMAKE_ENV += CXXFLAGS="$(CXXFLAGS)"
CMAKE_ENV += FFLAGS="$(F77FLAGS)"
CMAKE_ENV += FCFLAGS="$(FCFLAGS)"
CMAKE_ENV += LDFLAGS="$(LDFLAGS)"
CMAKE_ENV += PKG_CONFIG_PATH="$(PKG_CONFIG_PATH)"
 
CMAKE_DEFAULT_DIRS?=yes
 
CMAKE_OPTIONS += -DCMAKE_C_COMPILER:STRING=$(CC)
CMAKE_OPTIONS += -DCMAKE_CXX_COMPILER:STRING=$(CXX)
CMAKE_OPTIONS += -DCMAKE_Fortran_COMPILER:STRING=$(FC)
CMAKE_OPTIONS += -DCMAKE_C_FLAGS:STRING=$(CFLAGS)
CMAKE_OPTIONS += -DCMAKE_CXX_FLAGS:STRING=$(CXXFLAGS)
CMAKE_OPTIONS += -DCMAKE_Fortran_FLAGS:STRING=$(FCFLAGS)
 
CMAKE_OPTIONS += LDFLAGS="$(LDFLAGS)"
CMAKE_OPTIONS += PKG_CONFIG_PATH="$(PKG_CONFIG_PATH)"
 
CMAKE_OPTIONS += -DCMAKE_INSTALL_PREFIX:PATH=$(CMAKE_PREFIX)
ifeq ($(CMAKE_DEFAULT_DIRS),yes)
CMAKE_OPTIONS += -DCMAKE_INSTALL_BINDIR:PATH=$(CMAKE_BINDIR.$(BITS))
CMAKE_OPTIONS += -DCMAKE_INSTALL_SBINDIR:PATH=$(CMAKE_SBINDIR.$(BITS))
CMAKE_OPTIONS += -DCMAKE_INSTALL_LIBDIR:PATH=$(CMAKE_LIBDIR.$(BITS))
CMAKE_OPTIONS += -DCMAKE_INSTALL_DATAROOTDIR:PATH=$(CMAKE_DATAROOTDIR)
CMAKE_OPTIONS += -DCMAKE_INSTALL_DATADIR:PATH=$(CMAKE_DATAROOTDIR)
CMAKE_OPTIONS += -DCMAKE_INSTALL_INFODIR:PATH=$(CMAKE_INFODIR)
CMAKE_OPTIONS += -DCMAKE_INSTALL_LOCALEDIR:PATH=$(CMAKE_LOCALEDIR)
CMAKE_OPTIONS += -DCMAKE_INSTALL_MANDIR:PATH=$(CMAKE_MANDIR)
endif
CMAKE_OPTIONS += $(CMAKE_OPTIONS.$(BITS))
 
COMPONENT_INSTALL_ARGS +=    DESTDIR=$(PROTO_DIR)
 
$(BUILD_DIR_32)/.configured:    BITS=32
$(BUILD_DIR_64)/.configured:    BITS=64
 
CMAKE_ENV += $(CMAKE_ENV.$(BITS))
 
# configure the unpacked source for building 32 and 64 bit version
CMAKE =    cmake
$(BUILD_DIR)/%/.configured:    $(SOURCE_DIR)/.prep
    ($(RM) -rf $(@D) ; $(MKDIR) $(@D))
    $(COMPONENT_PRE_CMAKE_ACTION)
    (cd $(@D) ; $(ENV) $(CMAKE_ENV) \
        $(CMAKE) $(CMAKE_OPTIONS) $(SOURCE_DIR))
    $(COMPONENT_POST_CMAKE_ACTION)
    $(TOUCH) $@
 
# build the configured source
$(BUILD_DIR)/%/.built:    $(BUILD_DIR)/%/.configured
    $(COMPONENT_PRE_BUILD_ACTION)
    (cd $(@D) ; $(ENV) $(COMPONENT_BUILD_ENV) \
        $(GMAKE) $(COMPONENT_BUILD_GMAKE_ARGS) $(COMPONENT_BUILD_ARGS) \
        $(COMPONENT_BUILD_TARGETS))
    $(COMPONENT_POST_BUILD_ACTION)
ifeq   ($(strip $(PARFAIT_BUILD)),yes)
    -$(PARFAIT) build
endif
    $(TOUCH) $@
 
# install the built source into a prototype area
$(BUILD_DIR)/%/.installed:    $(BUILD_DIR)/%/.built
    $(COMPONENT_PRE_INSTALL_ACTION)
    (cd $(@D) ; $(ENV) $(COMPONENT_INSTALL_ENV) $(GMAKE) \
            $(COMPONENT_INSTALL_ARGS) $(COMPONENT_INSTALL_TARGETS))
    $(COMPONENT_POST_INSTALL_ACTION)
    $(TOUCH) $@
 
# test the built source
$(BUILD_DIR)/%/.tested:    $(BUILD_DIR)/%/.built
    $(COMPONENT_PRE_TEST_ACTION)
    (cd $(COMPONENT_TEST_DIR) ; $(ENV) $(COMPONENT_TEST_ENV) $(GMAKE) \
            $(COMPONENT_TEST_ARGS) $(COMPONENT_TEST_TARGETS))
    $(COMPONENT_POST_TEST_ACTION)
    $(TOUCH) $@
 
ifeq   ($(strip $(PARFAIT_BUILD)),yes)
parfait: install
    -$(PARFAIT) build
else
parfait:
    $(MAKE) PARFAIT_BUILD=yes parfait
endif
 
clean::
    $(RM) -r $(BUILD_DIR) $(PROTO_DIR)