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
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.
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]
23 # Copyright 2005 Sun Microsystems, Inc. All rights reserved.
24 # Use is subject to license terms.
30 include ../../Makefile.libstand
53 ../../../common/libstand \
57 $(NOT_RELEASE_BUILD)CPPFLAGS += -DDEBUG
58 CPPFLAGS = $(INCDIRS:%=-I%) -D_KMDB
60 C99MODE= $(C99_ENABLE)
63 # kmdb is a kernel module, so we'll use the kernel's build flags.
64 CFLAGS += $(STAND_FLAGS_32)
65 CFLAGS64 += $(STAND_FLAGS_64)
69 CERRWARN += -Wno-parentheses
72 COBJS = $(SRCS:%.c=%.o)
73 OBJS = $(COBJS:%.s=%.o)
81 $(AR) rc $(LIB) $(OBJS)
87 # Dynamic rules for object construction
90 %.o: ../../../common/libstand/%.c
94 %.o: $(SRC)/common/util/%.c
98 %.o: $(SRC)/common/util/i386/%.s
101 %.o: ../../libstand/%.c
102 $(COMPILE.c) -o $@ $<
105 %.o: ../../libstand/%.s
106 $(COMPILE.s) -o $@ $<