xref: /titanic_41/usr/src/lib/common/Makefile.com (revision 8eea8e29cc4374d1ee24c25a07f45af132db3499)
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, Version 1.0 only
6# (the "License").  You may not use this file except in compliance
7# with the License.
8#
9# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10# or http://www.opensolaris.org/os/licensing.
11# See the License for the specific language governing permissions
12# and limitations under the License.
13#
14# When distributing Covered Code, include this CDDL HEADER in each
15# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16# If applicable, add the following below this CDDL HEADER, with the
17# fields enclosed by brackets "[]" replaced with your own identifying
18# information: Portions Copyright [yyyy] [name of copyright owner]
19#
20# CDDL HEADER END
21#
22#
23# Copyright 2004 Sun Microsystems, Inc.  All rights reserved.
24# Use is subject to license terms.
25#
26# ident	"%Z%%M%	%I%	%E% SMI"
27#
28
29CRTI = crti.o
30CRTN = crtn.o
31CRT1 = crt1.o
32GCRT1 = gcrt1.o
33VALUES = values-Xa.o values-Xc.o values-Xs.o values-Xt.o \
34		values-xpg4.o values-xpg6.o
35
36# include library definitions
37include ../../Makefile.lib
38
39POST_PROCESS_O = $(PROCESS_COMMENT) $@ ; $(STRIP) -x $@
40
41OBJECTS = $(VALUES) $(CRTI) $(CRTN)
42$(INTEL_BLD)OBJECTS += $(CRT1) $(GCRT1)
43
44ROOTLIB=	$(ROOT)/usr/lib
45ROOTLIB64=	$(ROOTLIB)/$(MACH64)
46ROOTOBJECTS=	$(OBJECTS:%=$(ROOTLIB)/%)
47ROOTOBJECTS64=	$(OBJECTS:%=$(ROOTLIB64)/%)
48
49ASFLAGS +=	-P -D__STDC__ -D_ASM -DPIC
50
51values-xpg6.o := CPPFLAGS += -I$(SRC)/lib/libc/inc
52
53.KEEP_STATE:
54
55all:	$(OBJECTS)
56
57clean clobber:
58	$(RM) $(OBJECTS)
59
60lint:
61
62%.o:	../common/%.c
63	$(COMPILE.c) -o $@ $<
64	$(POST_PROCESS_O)
65
66%.o:	%.s
67	$(COMPILE.s) -o $@ $<
68	$(POST_PROCESS_O)
69
70# install rule for ROOTOBJECTS and ROOTOBJECTS64
71
72$(ROOTLIB)/%.o: %.o
73	$(INS.file)
74
75$(ROOTLIB64)/%.o: %.o
76	$(INS.file)
77