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 2006 Sun Microsystems, Inc. All rights reserved. 23# Use is subject to license terms. 24# 25# ident "%Z%%M% %I% %E% SMI" 26# 27 28include $(SRC)/lib/cfgadm_plugins/Makefile.com 29 30PLATFORM= sun4u 31LIBRARY= sysctrl.a 32VERS= .1 33 34OBJECTS= cfga.o 35 36# include library definitions 37include $(SRC)/lib/Makefile.lib 38 39INS.dir.root.sys= $(INS) -s -d -m $(DIRMODE) $@ 40$(CH)INS.dir.root.sys= $(INS) -s -d -m $(DIRMODE) -u root -g sys $@ 41INS.dir.root.bin= $(INS) -s -d -m $(DIRMODE) $@ 42$(CH)INS.dir.root.bin= $(INS) -s -d -m $(DIRMODE) -u root -g bin $@ 43 44USR_PLAT_DIR = $(ROOT)/usr/platform 45USR_PSM_DIR = $(USR_PLAT_DIR)/sun4u 46USR_PSM_LIB_DIR = $(USR_PSM_DIR)/lib 47USR_PSM_LIB_CFG_DIR = $(USR_PSM_LIB_DIR)/cfgadm 48USR_PSM_LIB_CFG_DIR_64 = $(USR_PSM_LIB_CFG_DIR)/$(MACH64) 49 50ROOTLIBDIR= $(USR_PSM_LIB_CFG_DIR) 51ROOTLIBDIR64= $(USR_PSM_LIB_CFG_DIR_64) 52 53SRCDIR = ../common 54 55LIBS = $(DYNLIB) 56 57CFLAGS += $(CCVERBOSE) 58LDLIBS += -lc 59 60CPPFLAGS += -I$(ROOT)/usr/platform/$(PLATFORM)/include 61 62.KEEP_STATE: 63 64all: $(LIBS) 65 66lint: lintcheck 67 68# Create target directories 69$(USR_PSM_DIR): $(LINKED_DIRS) 70 -$(INS.dir.root.sys) 71 72$(USR_PSM_LIB_DIR): $(USR_PSM_DIR) $(LINKED_LIB_DIRS) 73 -$(INS.dir.root.bin) 74 75$(USR_PSM_LIB_CFG_DIR): $(USR_PSM_LIB_DIR) $(LINKED_CFG_DIRS) 76 -$(INS.dir.root.bin) 77 78$(USR_PSM_LIB_CFG_DIR_64): $(USR_PSM_LIB_CFG_DIR) 79 -$(INS.dir.root.bin) 80 81$(USR_PSM_LIB_CFG_DIR)/%: % $(USR_PSM_LIB_CFG_DIR) 82 -$(INS.file) 83 84$(USR_PSM_LIB_CFG_DIR_64)/%: % $(USR_PSM_LIB_CFG_DIR_64) 85 -$(INS.file) 86 87# include library targets 88include $(SRC)/lib/Makefile.targ 89 90pics/%.o: ../common/%.c 91 $(COMPILE.c) -o $@ $< 92 $(POST_PROCESS_O) 93