dmake: do not set MAKEFLAGS=k
[unleashed/tickless.git] / usr / src / lib / efcode / efdaemon / Makefile
blobf130bdf5b20fb37896634244d299d22845b8125c
2 # CDDL HEADER START
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.
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.
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]
19 # CDDL HEADER END
22 # Copyright 2010 Sun Microsystems, Inc. All rights reserved.
23 # Use is subject to license terms.
25 # lib/efcode/efdaemon/Makefile
27 include $(SRC)/cmd/Makefile.cmd
28 include $(SRC)/cmd/Makefile.cmd.64
30 EFCODEDIR = $(ROOT)/usr/lib/efcode
31 EFCODEDIR64 = $(EFCODEDIR)/$(MACH64)
33 CPPFLAGS += -DDEBUG -DFCODE_INTERNAL
34 CPPFLAGS += -I ../include -I $(ROOT)/usr/platform/sun4u/include
36 CERRWARN += -Wno-unused-variable
38 PROG = efdaemon
39 EFTARGETS += $(EFCODEDIR64)/$(PROG)
40 EFTARGETS += $(EFCODEDIR)/efcode.sh
42 MFSTDIR = $(ROOT)/lib/svc/manifest/platform/sun4u
43 MFSTDIR_SUN4V = $(ROOT)/lib/svc/manifest/platform/sun4v
44 MANIFEST = efdaemon.xml
45 MANIFEST_SUN4V = efdaemon_sun4v.xml
46 EFTARGETS += $(MFSTDIR)/$(MANIFEST)
47 EFTARGETS += $(MFSTDIR_SUN4V)/$(MANIFEST_SUN4V)
49 $(MFSTDIR)/$(MANIFEST) := FILEMODE = 0444
50 $(MFSTDIR_SUN4V)/$(MANIFEST_SUN4V) := FILEMODE = 0444
52 all: $(PROG)
54 clean:
55 -$(RM) $(PROG)
56 -$(RM) $(MFSTDIR)/$(MANIFEST)
57 -$(RM) $(MFSTDIR_SUN4V)/$(MANIFEST)
58 -$(RM) $(MFSTDIR_SUN4V)/$(MANIFEST_SUN4V)
60 $(EFCODEDIR64)/%: %
61 $(INS.file)
63 $(EFCODEDIR)/%.sh: %.sh
64 $(INS.file)
66 $(MFSTDIR)/%: %
67 $(INS.file)
69 $(MFSTDIR_SUN4V)/%: %
70 $(INS.file)
72 install: all .WAIT $(EFTARGETS)
73 -$(MV) $(MFSTDIR_SUN4V)/$(MANIFEST_SUN4V) $(MFSTDIR_SUN4V)/$(MANIFEST)
76 .KEEP_STATE:
78 include $(SRC)/cmd/Makefile.targ