xref: /titanic_52/usr/src/tools/ctf/cvt/Makefile.com (revision ee4e24edd0ef9555c11f6ddc0a08fcb87f401944)
1#
2# CDDL HEADER START
3#
4# The contents of this file are subject to the terms of the
5# Common Development and Distribution License (the "License").
6# You may not use this file except in compliance with the License.
7#
8# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9# or http://www.opensolaris.org/os/licensing.
10# See the License for the specific language governing permissions
11# and limitations under the License.
12#
13# When distributing Covered Code, include this CDDL HEADER in each
14# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15# If applicable, add the following below this CDDL HEADER, with the
16# fields enclosed by brackets "[]" replaced with your own identifying
17# information: Portions Copyright [yyyy] [name of copyright owner]
18#
19# CDDL HEADER END
20#
21#
22# Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
23# Use is subject to license terms.
24#
25
26include ../../Makefile.ctf
27
28.KEEP_STATE:
29.PARALLEL:
30
31PROG=ctfconvert ctfmerge
32
33GENSRCS= \
34	alist.c \
35	altexec.c \
36	barrier.c \
37	ctf.c \
38	fifo.c \
39	hash.c \
40	iidesc.c \
41	input.c \
42	list.c \
43	memory.c \
44	merge.c \
45	output.c \
46	stack.c \
47	strtab.c \
48	symbol.c \
49	tdata.c \
50	traverse.c \
51	util.c
52
53CVTSRCS=$(GENSRCS) \
54	ctfconvert.c \
55	dwarf.c \
56	stabs.c \
57	fixup_tdescs.c \
58	st_parse.c
59CVTOBJS=$(CVTSRCS:%.c=%.o)
60CVTLINTFILES = $(CVTSRCS:%.c=%.ln)
61
62MRGSRCS=$(GENSRCS) \
63	ctfmerge.c
64MRGOBJS=$(MRGSRCS:%.c=%.o)
65MRGLINTFILES = $(MRGSRCS:%.c=%.ln)
66
67SRCS=$(CVTSRCS) $(MRGSRCS) $(CMPSRCS)
68OBJS=$(SRCS:%.c=%.o)
69LINTFILES=$(SRCS:%.c=%.ln)
70
71DWARFLDFLAGS	= \
72	-L$(ROOTONBLDLIBMACH) \
73	'-R$$ORIGIN/../../lib/$(MACH)' \
74	-ldwarf
75DWARFCPPFLAGS	= -I$(SRC)/lib/libdwarf/common
76
77LDFLAGS		+= -L$(NATIVE_ADJUNCT)/lib
78LDLIBS		+= -lz -lelf
79CPPFLAGS	+= -D_REENTRANT
80CFLAGS		+= $(CTF_FLAGS)
81LINTFLAGS	+= -mnux
82
83CERRWARN	+= -_gcc=-Wno-unused
84CERRWARN	+= -_gcc=-Wno-uninitialized
85CERRWARN	+= -_gcc=-Wno-switch
86
87C99MODE		= $(C99_ENABLE)
88
89ctfconvert	:= LDFLAGS += $(DWARFLDFLAGS)
90
91dwarf.o dwarf.ln	:= CPPFLAGS += $(DWARFCPPFLAGS)
92