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# 23# Copyright (c) 1994, 2010, Oracle and/or its affiliates. All rights reserved. 24# 25 26LIBRARY = libconv.a 27 28COMOBJS32 = cap_machelf32.o dynamic_machelf32.o \ 29 globals_machelf32.o sections_machelf32.o \ 30 symbols_machelf32.o symbols_sparc_machelf32.o 31 32COMOBJS64 = cap_machelf64.o dynamic_machelf64.o \ 33 globals_machelf64.o sections_machelf64.o \ 34 symbols_machelf64.o symbols_sparc_machelf64.o 35 36COMOBJS= arch.o audit.o \ 37 c_literal.o \ 38 cap.o config.o \ 39 corenote.o data.o \ 40 deftag.o demangle.o \ 41 dl.o dwarf.o \ 42 dwarf_ehe.o dynamic.o \ 43 elf.o entry.o \ 44 globals.o group.o \ 45 lddstub.o map.o \ 46 phdr.o relocate.o \ 47 relocate_i386.o relocate_amd64.o \ 48 relocate_sparc.o sections.o \ 49 segments.o strproc.o \ 50 symbols.o syminfo.o \ 51 tokens.o time.o \ 52 version.o 53 54ELFCAP_OBJS= elfcap.o 55 56ASOBJS= vernote.o 57 58BLTOBJS= arch_msg.o audit_msg.o \ 59 c_literal_msg.o \ 60 cap_msg.o config_msg.o \ 61 corenote_msg.o data_msg.o \ 62 deftag_msg.o demangle_msg.o \ 63 dl_msg.o dwarf_msg.o \ 64 dwarf_ehe_msg.o dynamic_msg.o \ 65 elf_msg.o entry_msg.o \ 66 globals_msg.o group_msg.o \ 67 map_msg.o lddstub_msg.o \ 68 phdr_msg.o relocate_amd64_msg.o \ 69 relocate_i386_msg.o relocate_sparc_msg.o \ 70 sections_msg.o segments_msg.o \ 71 symbols_msg.o symbols_sparc_msg.o \ 72 syminfo_msg.o time_msg.o \ 73 version_msg.o 74 75 76OBJECTS = $(COMOBJS) $(COMOBJS32) $(COMOBJS64) $(ELFCAP_OBJS) \ 77 $(ASOBJS) $(BLTOBJS) 78 79# 80# This library is unusual since it's a static archive of PIC objects. 81# Since static archives should never contain CTF data (regardless of 82# whether the object code is position-independent), we disable CTF. 83# 84NOCTFOBJS = $(OBJECTS) 85CTFMERGE_LIB = : 86 87include $(SRC)/lib/Makefile.lib 88include $(SRC)/cmd/sgs/Makefile.com 89 90CERRWARN += -_gcc=-Wno-type-limits 91CERRWARN += -_gcc=-Wno-switch 92 93CTFCONVERT_O= 94 95README_REVISION=../../packages/common/readme_revision 96ONLDREADME= ../../packages/common/SUNWonld-README 97 98PICS= $(OBJECTS:%=pics/%) 99 100CPPFLAGS += -I$(SRCBASE)/lib/libc/inc -I$(ELFCAP) \ 101 -I$(SRC)/common/sgsrtcid 102 103ARFLAGS= cr 104 105AS_CPPFLAGS= -P -D_ASM $(CPPFLAGS) 106 107BLTDATA= $(BLTOBJS:%.o=%.c) $(BLTOBJS:%.o=%.h) report_bufsize.h 108 109SRCS= ../common/llib-lconv 110LINTSRCS= $(COMOBJS:%.o=../common/%.c) \ 111 $(COMOBJS_NOMSG:%.o=../common/%.c) \ 112 $(ELFCOM_OBJS:%.o=$(ELFCAP)/%.c) ../common/lintsup.c 113LINTSRCS32 = $(COMOBJS32:%32.o=../common/%.c) 114LINTSRCS64 = $(COMOBJS64:%64.o=../common/%.c) 115 116SGSMSGTARG= $(BLTOBJS:%_msg.o=../common/%.msg) 117 118LINTFLAGS += -u 119LINTFLAGS64 += -u 120 121CLEANFILES += $(BLTDATA) $(LINTOUTS) bld_vernote vernote.s 122CLOBBERFILES += $(LINTLIBS) 123