usr/src/tools/ctf/Makefile.ctf
author Keith M Wesolowski <wesolows@foobazco.org>
Wed, 17 Jul 2013 17:05:07 -0700
changeset 14225 20c0ad5cefdf
parent 13898 58bc6f85b799
permissions -rw-r--r--
3915 Add adjuncts support to the build Reviewed by: Robert Mustacchi <[email protected]> Reviewed by: Richard Lowe <[email protected]> Approved by: Dan McDonald <[email protected]>
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
     1
#
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
     2
# CDDL HEADER START
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
     3
#
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
     4
# The contents of this file are subject to the terms of the
1717
ef845d4a1074 6242262 ON should be buildable with gcc
wesolows
parents: 0
diff changeset
     5
# Common Development and Distribution License (the "License").
ef845d4a1074 6242262 ON should be buildable with gcc
wesolows
parents: 0
diff changeset
     6
# You may not use this file except in compliance with the License.
0
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
     7
#
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
     8
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
     9
# or http://www.opensolaris.org/os/licensing.
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    10
# See the License for the specific language governing permissions
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    11
# and limitations under the License.
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    12
#
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    13
# When distributing Covered Code, include this CDDL HEADER in each
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    14
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    15
# If applicable, add the following below this CDDL HEADER, with the
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    16
# fields enclosed by brackets "[]" replaced with your own identifying
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    17
# information: Portions Copyright [yyyy] [name of copyright owner]
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    18
#
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    19
# CDDL HEADER END
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    20
#
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    21
#
1717
ef845d4a1074 6242262 ON should be buildable with gcc
wesolows
parents: 0
diff changeset
    22
# Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
0
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    23
# Use is subject to license terms.
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    24
#
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    25
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    26
include ../../../Makefile.tools
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    27
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    28
#
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    29
# A `make install' from the tools directory needs to work, even if the rest of
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    30
# the tree hasn't been built.  As such, we need to tell the ctf builds how
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    31
# to find the ctf specific headers located outside the tools subtree. We also 
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    32
# want to tell them how to get to the common tools source files.
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    33
# 
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    34
# For additonal details on the ordering of includes via -I, see the comments
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    35
# in $(SRC)/tools/ctf/common/ctf_headers.h.
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    36
# 
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    37
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    38
HDRDIRS= \
1717
ef845d4a1074 6242262 ON should be buildable with gcc
wesolows
parents: 0
diff changeset
    39
	-_gcc=-nostdinc \
0
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    40
	-I../../common \
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    41
	-I$(SRC) \
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    42
	-I/usr/include \
14225
20c0ad5cefdf 3915 Add adjuncts support to the build
Keith M Wesolowski <wesolows@foobazco.org>
parents: 13898
diff changeset
    43
	-I$(SRC)/uts/common \
20c0ad5cefdf 3915 Add adjuncts support to the build
Keith M Wesolowski <wesolows@foobazco.org>
parents: 13898
diff changeset
    44
	-I$(NATIVE_ADJUNCT)/include
0
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    45
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    46
CPPFLAGS += $(HDRDIRS)
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    47
CFLAGS += $(CCVERBOSE)
13898
58bc6f85b799 2933 compiler warning gags need better granularity
Richard Lowe <richlowe@richlowe.net>
parents: 1717
diff changeset
    48
CERRWARN += -_gcc=-Wno-parentheses