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, Version 1.0 only 6# (the "License"). You may not use this file except in compliance 7# with the License. 8# 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. 13# 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] 19# 20# CDDL HEADER END 21# 22# 23# Copyright 2004 Sun Microsystems, Inc. All rights reserved. 24# Use is subject to license terms. 25# 26 27include $(SRC)/tools/Makefile.tools 28include $(SRC)/lib/libscf/Makefile.shared.com 29 30SRCDIR = $(SRC)/lib/libscf/common 31COMDIR = $(SRC)/common/svc 32LIBUUTIL = $(SRC)/lib/libuutil/ 33 34CPPFLAGS += -DNATIVE_BUILD $(DTEXTDOM) \ 35 -I$(SRC)/lib/libscf/inc -I$(COMDIR) -I$(LIBUUTIL)/common 36LDLIBS = -R '$$ORIGIN/../../lib/$(MACH)' -L$(ROOTONBLDLIBMACH) \ 37 -luutil -lc -lgen -lnvpair -lsmbios 38NATIVE_LIBS += libsmbios.so libnvpair.so libgen.so libc.so 39 40include $(SRC)/Makefile.native 41 42.KEEP_STATE: 43 44all: $(LIBS) 45 46install: all $(ROOTONBLDLIBMACH)/$(DYNLIB) $(ROOTONBLDLIBMACH)/$(LIBLINKS) 47 48$(ROOTONBLDLIBMACH)/$(DYNLIB): $(DYNLIB) 49 $(INS.file) $(DYNLIB) 50 51$(ROOTONBLDLIBMACH)/$(LIBLINKS): $(ROOTONBLDLIBMACH)/$(DYNLIB) 52 @$(RM) $(ROOTONBLDLIBMACH)/$(LIBLINKS) 53 $(SYMLINK) $(DYNLIB) $(ROOTONBLDLIBMACH)/$(LIBLINKS) 54 55include $(SRC)/lib/Makefile.targ 56