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 (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved. 23# 24 25LIBRARY = libmdesc.a 26VERS = .1 27 28LIBSRCS = \ 29 mdesc_fini.c \ 30 mdesc_findname.c \ 31 mdesc_findnodeprop.c \ 32 mdesc_getproparcs.c \ 33 mdesc_getpropdata.c \ 34 mdesc_getpropstr.c \ 35 mdesc_getpropval.c \ 36 mdesc_init_intern.c \ 37 mdesc_nodecount.c \ 38 mdesc_scandag.c \ 39 mdesc_walkdag.c 40 41OBJECTS = $(LIBSRCS:%.c=%.o) 42 43include ../../../Makefile.lib 44include ../../Makefile.lib 45 46SRCS = $(LIBSRCS:%.c=$(SRC)/common/mdesc/%.c) 47 48LIBS = $(DYNLIB) $(LINTLIB) 49 50SRCDIR = ../common 51 52CPPFLAGS += -I../common -I. 53CFLAGS += $(CCVERBOSE) -K PIC 54CFLAGS64 += $(CCVERBOSE) -K PIC 55LDLIBS += -lc 56 57LINTFLAGS += -erroff=E_BAD_PTR_CAST_ALIGN -v 58LINTFLAGS64 += -erroff=E_BAD_PTR_CAST_ALIGN -v 59$(LINTLIB) := SRCS = $(SRCDIR)/$(LINTSRC) 60$(LINTLIB) := LINTFLAGS = -nsvx 61$(LINTLIB) := LINTFLAGS64 = -nsvx -m64 62 63.KEEP_STATE: 64 65all: $(LIBS) 66 67lint: $(LINTLIB) lintcheck 68 69pics/%.o: $(SRC)/common/mdesc/%.c 70 $(COMPILE.c) -o $@ $< 71 $(POST_PROCESS_O) 72 73%.ln: $(SRC)/common/mdesc/%.c 74 $(LINT.c) -o $@ $< 75 76include ../../../Makefile.targ 77include ../../Makefile.targ 78