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 2010 Sun Microsystems, Inc. All rights reserved. 23# Use is subject to license terms. 24# 25# lib/efcode/efdaemon/Makefile 26 27include $(SRC)/cmd/Makefile.cmd 28include $(SRC)/cmd/Makefile.cmd.64 29 30EFCODEDIR = $(ROOT)/usr/lib/efcode 31EFCODEDIR64 = $(EFCODEDIR)/$(MACH64) 32 33CPPFLAGS += -DDEBUG -DFCODE_INTERNAL 34CPPFLAGS += -I ../include -I $(ROOT)/usr/platform/sun4u/include 35 36PROG = efdaemon 37EFTARGETS += $(EFCODEDIR64)/$(PROG) 38EFTARGETS += $(EFCODEDIR)/efcode.sh 39 40MFSTDIR = $(ROOT)/lib/svc/manifest/platform/sun4u 41MFSTDIR_SUN4V = $(ROOT)/lib/svc/manifest/platform/sun4v 42MANIFEST = efdaemon.xml 43MANIFEST_SUN4V = efdaemon_sun4v.xml 44EFTARGETS += $(MFSTDIR)/$(MANIFEST) 45EFTARGETS += $(MFSTDIR_SUN4V)/$(MANIFEST_SUN4V) 46 47$(MFSTDIR)/$(MANIFEST) := FILEMODE = 0444 48$(MFSTDIR_SUN4V)/$(MANIFEST_SUN4V) := FILEMODE = 0444 49 50all: $(PROG) 51 52clean: 53 -$(RM) $(PROG) 54 -$(RM) $(MFSTDIR)/$(MANIFEST) 55 -$(RM) $(MFSTDIR_SUN4V)/$(MANIFEST) 56 -$(RM) $(MFSTDIR_SUN4V)/$(MANIFEST_SUN4V) 57 58$(EFCODEDIR64)/%: % 59 $(INS.file) 60 61$(EFCODEDIR)/%.sh: %.sh 62 $(INS.file) 63 64$(MFSTDIR)/%: % 65 $(INS.file) 66 67$(MFSTDIR_SUN4V)/%: % 68 $(INS.file) 69 70install: all .WAIT $(EFTARGETS) 71 -$(MV) $(MFSTDIR_SUN4V)/$(MANIFEST_SUN4V) $(MFSTDIR_SUN4V)/$(MANIFEST) 72 73lint: lint_PROG 74 75.KEEP_STATE: 76 77include $(SRC)/cmd/Makefile.targ 78