xref: /illumos-gate/usr/src/lib/fm/libfmevent/Makefile.com (revision 410cfc1c29e3c504b79366ddfd3584e9e69a33d5)
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) 2009, 2010, Oracle and/or its affiliates. All rights reserved.
23#
24
25LIBRARY = libfmevent.a
26VERS = .1
27
28LIBSRCS = fmev_subscribe.c \
29	fmev_evaccess.c \
30	fmev_errstring.c \
31	fmev_util.c \
32	fmev_publish.c
33
34OBJECTS = $(LIBSRCS:%.c=%.o)
35
36include ../../../Makefile.lib
37
38# This library must install in /lib/fm since it is a dependency of
39# svc.startd and may be required in early boot.  Thus we cannot
40# include ../Makefile.lib - instead we set ROOTFMHDRDIR and
41# ROOTFMHDRS and redefine ROOTLIBDIR and ROOTLIBDIR64 accordingly
42
43ROOTFMHDRDIR = $(ROOTHDRDIR)/fm
44ROOTFMHDRS   = $(FMHDRS:%=$(ROOTFMHDRDIR)/%)
45
46ROOTLIBDIR=     $(ROOTFS_LIBDIR)/fm
47ROOTLIBDIR64=   $(ROOTFS_LIBDIR)/fm/$(MACH64)
48
49SRCS = $(LIBSRCS:%.c=../common/%.c)
50LIBS = $(DYNLIB) $(LINTLIB)
51
52SRCDIR =	../common
53
54C99MODE = $(C99_ENABLE)
55
56CPPFLAGS += -I../common -I.
57$(NOT_RELEASE_BUILD)CPPFLAGS += -DDEBUG
58
59CFLAGS += $(CCVERBOSE) $(C_BIGPICFLAGS)
60CFLAGS64 += $(CCVERBOSE) $(C_BIGPICFLAGS)
61
62FMLIBDIR=usr/lib/fm
63$(BUILD64)FMLIBDIR64=usr/lib/fm/$(MACH64)
64
65$(DYNLIB) := LDLIBS += -lumem -lnvpair -luutil -lsysevent \
66	-L$(ROOT)/$(FMLIBDIR) -ltopo -lc
67
68$(BUILD64)$(DYNLIB) := LDLIBS64 += -lumem -lnvpair -luutil -lsysevent \
69	-L$(ROOT)/$(FMLIBDIR64) -ltopo -lc
70
71LINTFLAGS = -msux
72LINTFLAGS64 = -msux -m64
73
74$(LINTLIB) := SRCS = $(SRCDIR)/$(LINTSRC)
75$(LINTLIB) := LINTFLAGS = -nsvx
76$(LINTLIB) := LINTFLAGS64 = -nsvx -m64
77
78CLEANFILES += ../common/fmev_errstring.c
79
80.KEEP_STATE:
81
82all: $(LIBS)
83
84lint: $(LINTLIB) lintcheck
85
86pics/%.o: ../$(MACH)/%.c
87	$(COMPILE.c) -o $@ $<
88	$(POST_PROCESS_O)
89
90../common/fmev_errstring.c: ../common/mkerror.sh ../common/libfmevent.h
91	sh ../common/mkerror.sh ../common/libfmevent.h > $@
92
93%.o: ../common/%.c
94	$(COMPILE.c) -o $@ $<
95	$(POST_PROCESS_O)
96
97include ../../../Makefile.targ
98include ../../Makefile.targ
99