xref: /titanic_50/usr/src/cmd/avs/dsw/Makefile (revision 7014882c6a3672fd0e5d60200af8643ae53c5928)
1fcf3ce44SJohn Forte# CDDL HEADER START
2fcf3ce44SJohn Forte#
3fcf3ce44SJohn Forte# The contents of this file are subject to the terms of the
4fcf3ce44SJohn Forte# Common Development and Distribution License (the "License").
5fcf3ce44SJohn Forte# You may not use this file except in compliance with the License.
6fcf3ce44SJohn Forte#
7fcf3ce44SJohn Forte# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
8fcf3ce44SJohn Forte# or http://www.opensolaris.org/os/licensing.
9fcf3ce44SJohn Forte# See the License for the specific language governing permissions
10fcf3ce44SJohn Forte# and limitations under the License.
11fcf3ce44SJohn Forte#
12fcf3ce44SJohn Forte# When distributing Covered Code, include this CDDL HEADER in each
13fcf3ce44SJohn Forte# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
14fcf3ce44SJohn Forte# If applicable, add the following below this CDDL HEADER, with the
15fcf3ce44SJohn Forte# fields enclosed by brackets "[]" replaced with your own identifying
16fcf3ce44SJohn Forte# information: Portions Copyright [yyyy] [name of copyright owner]
17fcf3ce44SJohn Forte#
18fcf3ce44SJohn Forte# CDDL HEADER END
19fcf3ce44SJohn Forte#
20fcf3ce44SJohn Forte#
21fcf3ce44SJohn Forte# Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
22fcf3ce44SJohn Forte# Use is subject to license terms.
23fcf3ce44SJohn Forte#
24fcf3ce44SJohn Forte
25fcf3ce44SJohn Forteinclude ../../Makefile.cmd
26fcf3ce44SJohn Forteinclude ../Makefile.com
27fcf3ce44SJohn Forte
28fcf3ce44SJohn ForteDYNPROG =	iiadm iiboot iicpbmp iicpshd
29fcf3ce44SJohn Forte
30fcf3ce44SJohn FortePROG=$(DYNPROG)
31fcf3ce44SJohn Forte
32fcf3ce44SJohn FortePROG1 = iiadm
33fcf3ce44SJohn FortePROG2 = iiboot
34fcf3ce44SJohn FortePROG3 = iicpbmp
35fcf3ce44SJohn FortePROG4 = iicpshd
36fcf3ce44SJohn Forte
37fcf3ce44SJohn ForteSUBDIRS= etc
38fcf3ce44SJohn Forte
39fcf3ce44SJohn Forteiiadm	:= POBJS = iiadm.o
40fcf3ce44SJohn Forteiiboot	:= POBJS = iiboot.o
41fcf3ce44SJohn Forteiicpbmp	:= POBJS = iicpbmp.o
42fcf3ce44SJohn Forteiicpshd	:= POBJS = iicpshd.o
43fcf3ce44SJohn Forte
44fcf3ce44SJohn Forteiiadm   := LDLIBS += -lnsctl -ldscfg -lunistat -lm
45fcf3ce44SJohn Forteiiboot  := LDLIBS += -ldscfg -lunistat
46fcf3ce44SJohn Forteiicpbmp := LDLIBS += -ldscfg -lunistat
47fcf3ce44SJohn Forteiicpshd := LDLIBS += -ldscfg -lunistat
48fcf3ce44SJohn Forte
49fcf3ce44SJohn ForteOBJS=	iiadm.o iiboot.o iicpbmp.o iicpshd.o
50fcf3ce44SJohn FortePOFILE = dsw_all.po
51fcf3ce44SJohn ForteSRCS=	$(OBJS:%.o=%.c)
52fcf3ce44SJohn FortePOFILES= $(OBJS:%.o=%.po)
53fcf3ce44SJohn Forte
54*7014882cSRichard LoweCFLAGS +=	$(CCVERBOSE) -D_DSW_
55fcf3ce44SJohn ForteLINTFLAGS +=	-Xa -n -s -x -m -u -Dlint -errhdr=%user -D_DSW_ -DDEBUG
56fcf3ce44SJohn ForteLINTFLAGS +=	-erroff=E_SEC_SCANF_UNBOUNDED_COPY
57fcf3ce44SJohn ForteLINTFLAGS +=	-erroff=E_SEC_PRINTF_VAR_FMT
58*7014882cSRichard LoweCERRWARN +=	-_gcc=-Wno-unused-variable
59*7014882cSRichard LoweCERRWARN +=	-_gcc=-Wno-parentheses
60*7014882cSRichard LoweCERRWARN +=	-_gcc=-Wno-uninitialized
61fcf3ce44SJohn Forte
62fcf3ce44SJohn Forteall	:=	TARGET= all
63fcf3ce44SJohn Forteinstall	:=	TARGET= install
64fcf3ce44SJohn Forteclean	:=	TARGET= clean
65fcf3ce44SJohn Forteclobber	:=	TARGET= clobber
66fcf3ce44SJohn Fortelint	:=	TARGET= lint
67fcf3ce44SJohn Forte
68fcf3ce44SJohn Forte.KEEP_STATE:
69fcf3ce44SJohn Forte
70fcf3ce44SJohn Forte.PARALLEL: $(OBJS)
71fcf3ce44SJohn Forte
72fcf3ce44SJohn Forteall: $(SUBDIRS) $(PROG) $(POFILES)
73fcf3ce44SJohn Forte
74fcf3ce44SJohn Forteinstall: $(SUBDIRS) all $(ROOTPROG)
75fcf3ce44SJohn Forte	-$(RM) $(ROOT)/usr/sbin/$(PROG1)
76fcf3ce44SJohn Forte	-$(RM) $(ROOT)/usr/sbin/$(PROG2)
77fcf3ce44SJohn Forte	-$(RM) $(ROOT)/usr/sbin/$(PROG3)
78fcf3ce44SJohn Forte	-$(RM) $(ROOT)/usr/sbin/$(PROG4)
79fcf3ce44SJohn Forte	-$(SYMLINK) ../bin/$(PROG1) $(ROOT)/usr/sbin/$(PROG1)
80fcf3ce44SJohn Forte	-$(SYMLINK) ../bin/$(PROG2) $(ROOT)/usr/sbin/$(PROG2)
81fcf3ce44SJohn Forte	-$(SYMLINK) ../bin/$(PROG3) $(ROOT)/usr/sbin/$(PROG3)
82fcf3ce44SJohn Forte	-$(SYMLINK) ../bin/$(PROG4) $(ROOT)/usr/sbin/$(PROG4)
83fcf3ce44SJohn Forte
84fcf3ce44SJohn Forte$(POFILE): $(POFILES)
85fcf3ce44SJohn Forte	$(RM) $@
86fcf3ce44SJohn Forte	$(CAT) $(POFILES) > $@
87fcf3ce44SJohn Forte
88fcf3ce44SJohn Fortelint:	$(SUBDIRS) lint_SRCS
89fcf3ce44SJohn Forte
90fcf3ce44SJohn Forteclean:	$(SUBDIRS)
91fcf3ce44SJohn Forte	$(RM) *.o $(POFILES)
92fcf3ce44SJohn Forte
93fcf3ce44SJohn Forte$(PROG): $(OBJS)
94fcf3ce44SJohn Forte	$(LINK.c) $(POBJS) -o $@ $(LDLIBS)
95fcf3ce44SJohn Forte	$(POST_PROCESS)
96fcf3ce44SJohn Forte
97fcf3ce44SJohn Forte$(SUBDIRS):	FRC
98fcf3ce44SJohn Forte	@cd $@; pwd; $(MAKE) $(TARGET)
99fcf3ce44SJohn Forte
100fcf3ce44SJohn ForteFRC:
101fcf3ce44SJohn Forte
102fcf3ce44SJohn Forteinclude	../../Makefile.targ
103