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 2009 Sun Microsystems, Inc. All rights reserved. 23# Use is subject to license terms. 24# 25 26LIBRARY = libfmd_msg.a 27VERS = .1 28 29LIBSRCS = fmd_msg.c 30OBJECTS = $(LIBSRCS:%.c=%.o) 31 32include ../../../Makefile.lib 33include ../../Makefile.lib 34 35SRCS = $(LIBSRCS:%.c=../common/%.c) 36LIBS = $(DYNLIB) $(LINTLIB) 37 38SRCDIR = ../common 39 40CPPFLAGS += -I../common -I. 41CFLAGS += $(CCVERBOSE) $(C_BIGPICFLAGS) 42CFLAGS64 += $(CCVERBOSE) $(C_BIGPICFLAGS) 43LDLIBS += -lnvpair -lc 44 45LINTFLAGS = -msux 46LINTFLAGS64 = -msux -m64 47 48CLOBBERFILES += fmd_msg_test fmd_msg_test.core fmd_msg_test.out 49 50$(LINTLIB) := SRCS = $(SRCDIR)/$(LINTSRC) 51$(LINTLIB) := LINTFLAGS = -nsvx 52$(LINTLIB) := LINTFLAGS64 = -nsvx -m64 53 54.KEEP_STATE: 55 56all: $(LIBS) 57 58lint: $(LINTLIB) lintcheck 59 60include ../../../Makefile.targ 61include ../../Makefile.targ 62 63LDLIBS_$(MACH) = -L$(ROOT)/usr/lib/fm -R$(ROOT)/usr/lib/fm 64LDLIBS_$(MACH64) = -L$(ROOT)/usr/lib/fm/$(MACH64) -R$(ROOT)/usr/lib/fm/$(MACH64) 65 66# 67# To ease the development and maintenance of libfmd_msg, a test suite is built 68# directly into the library. The test program fmd_msg_test.c includes a set of 69# tests for all the code paths in the library. The test program executes the 70# calls, and then forks into the background and dumps core. After the test 71# runs, we diff the output against the master hand-verified output, and confirm 72# no leaks or corruption exist. To run the entire suite, type "make test" and 73# inspect the results (the make target will fail on an error). 74# 75# The cmp skips the first 900 bytes of $(SRCDIR)/fmd_msg_test.out to get us 76# passed the CDDL header and copyright in that file. 77# 78test: install fmd_msg_test 79 @echo; echo "Running `pwd | sed 's/.*\///'` fmd_msg test suite ... \c" 80 @coreadm -p core $$$$ 81 @UMEM_DEBUG=default,verbose UMEM_LOGGING=fail,contents LANG=C \ 82 LC_ALL=C ./fmd_msg_test | grep -v EVENT-TIME > fmd_msg_test.out 83 @chmod 0444 core; mv -f core fmd_msg_test.core 84 @echo; echo "Checking test output ... \c" 85 @cmp -s $(SRCDIR)/fmd_msg_test.out fmd_msg_test.out 900 0 && echo pass \ 86 || ( echo FAIL && diff $(SRCDIR)/fmd_msg_test.out fmd_msg_test.out ) 87 @echo; echo Checking for memory leaks: 88 @echo ::findleaks | mdb fmd_msg_test.core 89 @echo; echo Checking for latent corruption: 90 @echo ::umem_verify | mdb fmd_msg_test.core | grep -v clean 91 @echo 92 93fmd_msg_test: $(SRCDIR)/fmd_msg_test.c 94 $(LINT.c) $(SRCDIR)/fmd_msg_test.c 95 $(LINK.c) -o fmd_msg_test $(SRCDIR)/fmd_msg_test.c \ 96 $(LDLIBS_$(TARGETMACH)) -lfmd_msg -lnvpair -lumem 97