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 26include $(SRC)/Makefile.psm 27 28LIBRARY = libpiclenvmond.a 29VERS = .1 30PLATFORM = SUNW,Netra-CP2300 31 32OBJECTS= piclenvmond.o piclsensors.o picldr.o piclplatmod.o 33 34# include library definitions 35include $(SRC)/lib/Makefile.lib 36 37ROOT_PLATFORM = $(USR_PLAT_DIR)/$(PLATFORM) 38 39include $(SRC)/cmd/picl/plugins/Makefile.com 40 41CFLAGS += $(CCVERBOSE) 42CPPFLAGS += -D_REENTRANT -D_SNOWBIRD \ 43 -I$(USR_PSM_INCL_DIR) \ 44 -I$(SRC)/uts/sun4u/sys \ 45 -I$(SRC)/cmd/picl/plugins/inc \ 46 -I$(SRC)/cmd/picl/plugins/sun4u/snowbird/lib/libctsmc 47 48SRCS= $(OBJECTS:%.o=%.c) 49 50LIBS = $(DYNLIB) 51 52ROOTLIBDIR = $(ROOT_PLAT_PLUGINDIR) 53 54CLEANFILES = $(LINTOUT) $(LINTLIB) 55 56LDLIBS += -L$(SRC)/lib/libptree/$(MACH) 57LDLIBS += -L$(SRC)/cmd/picl/plugins/sun4u/snowbird/lib/libctsmc 58LDLIBS += -L$(ROOT)/usr/lib/picl/plugins -lc -lpicltree \ 59 -lpicl -lnvpair -lm -ldevinfo -lcfgadm \ 60 -lpiclfrutree -lrcm -lctsmc 61LDLIBS += -R/usr/platform/$(PLATFORM)/lib 62LDLIBS += -R/usr/platform/$(PLATFORM)/lib/picl/plugins 63LDLIBS += -R/usr/platform/sun4u/lib/picl/plugins:/usr/lib/picl/plugins 64 65.KEEP_STATE: 66 67SUBDIRS= 68 69POFILE= snowbird_piclenvmond.po 70POFILES= $(SRCS:%.c=%.po) 71 72all := TARGET= all 73install := TARGET= install 74clean := TARGET= clean 75clobber := TARGET= clobber 76lint := TARGET= lint 77_msg := TARGET= _msg 78 79all: $(LIBS) $(LIBLINKS) 80 81install: $(ROOTLIBDIR) all $(ROOTLIBS) $(ROOTLINKS) 82 83$(LIBLINKS): FRC 84 $(RM) $@; $(SYMLINK) ./$(DYNLIB) $@ 85 86_msg: $(MSGDOMAIN) $(POFILE) 87 $(RM) $(MSGDOMAIN)/$(POFILE) 88 $(CP) $(POFILE) $(MSGDOMAIN)/$(POFILE) 89 90$(POFILE): $(POFILES) 91 $(CAT) $(POFILES) > $(POFILE) 92 93$(MSGDOMAIN): 94 $(INS.dir) 95 96# include library targets 97include $(SRC)/lib/Makefile.targ 98include $(SRC)/cmd/picl/plugins/Makefile.targ 99 100lint : 101 $(LINT.c) $(SRCS) 102 103$(SUBDIRS): FRC 104 @cd $@; pwd; $(MAKE) $(TARGET) 105 106FRC: 107