8322 nl: misleading-indentation
[unleashed/tickless.git] / usr / src / cmd / mdb / Makefile.libstand
blob471fea38343d67126661bbd5701d01d1a4ac465d
2 # CDDL HEADER START
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.
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]
20 # CDDL HEADER END
23 # Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
24 # Use is subject to license terms.
27 .KEEP_STATE:
28 .SUFFIXES:
30 include ../../Makefile.libstand
32 SRCS += \
33         bcmp.c \
34         bcopy.c \
35         bsearch.c \
36         bzero.c \
37         ctime.c \
38         ctype.c \
39         errno.c \
40         getopt.c \
41         memchr.c \
42         memcmp.c \
43         memcpy.c \
44         memccpy.c \
45         memmove.c \
46         memset.c \
47         qsort.c \
48         string.c \
49         strtol.c \
50         strtoul.c
52 # We don't want thread-specific errno's in kmdb, as we're single-threaded.
53 DTS_ERRNO=
55 INCDIRS = \
56         ../../../common/libstand \
57         ../../libstand \
58         $(ROOT)/usr/include
60 $(NOT_RELEASE_BUILD)CPPFLAGS += -DDEBUG
61 CPPFLAGS = $(INCDIRS:%=-I%) -D_KMDB
64 # kmdb is a kernel module, so we'll use the kernel's build flags.
65 CFLAGS += $(STAND_FLAGS_32)
66 CFLAGS64 += $(STAND_FLAGS_64)
68 ASFLAGS += -P -D_ASM
70 LINTFLAGS += -n -errtags=yes
71 CLINTFILES = $(SRCS:%.c=%.ln)
72 LINTFILES = $(CLINTFILES:%.s=%.ln)
74 CERRWARN += -_gcc=-Wno-parentheses
76 LIB = libstand.a
77 COBJS = $(SRCS:%.c=%.o)
78 OBJS = $(COBJS:%.s=%.o)
80 .NO_PARALLEL:
81 .PARALLEL: $(OBJS) $(LINTFILES)
83 install all: $(LIB)
85 $(LIB): $(OBJS)
86         $(AR) r $(LIB) $(OBJS)
88 clobber clean:
89         $(RM) $(LIB) $(OBJS) $(LINTFILES)
91 lint: $(LINTFILES)
92         $(LINT) $(LINTFLAGS) $(LINTFILES)
95 # Dynamic rules for object construction
98 %.o: ../../../common/libstand/%.c
99         $(COMPILE.c) $<
100         $(CTFCONVERT_O)
102 %.o: $(SRC)/common/util/%.c
103         $(COMPILE.c) $<
104         $(CTFCONVERT_O)
106 %.o: $(SRC)/common/util/i386/%.s
107         $(COMPILE.s) $<
109 %.o: ../../libstand/%.c
110         $(COMPILE.c) -o $@ $<
111         $(CTFCONVERT_O)
113 %.o: ../../libstand/%.s
114         $(COMPILE.s) -o $@ $<
117 # Lint
120 %.ln: ../../../common/libstand/%.c
121         $(LINT.c) -c $<
123 %.ln: $(SRC)/common/util/%.c
124         $(LINT.c) -c $<
126 %.ln: $(SRC)/common/util/i386/%.s
127         $(LINT.s) -c $<
129 %.ln: ../../libstand/%.c
130         $(LINT.c) -c $<
132 %.ln: %.s
133         $(LINT.s) -c $<