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