1*45039663SJohn Forte#
2*45039663SJohn Forte# CDDL HEADER START
3*45039663SJohn Forte#
4*45039663SJohn Forte# The contents of this file are subject to the terms of the
5*45039663SJohn Forte# Common Development and Distribution License (the "License").
6*45039663SJohn Forte# You may not use this file except in compliance with the License.
7*45039663SJohn Forte#
8*45039663SJohn Forte# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9*45039663SJohn Forte# or http://www.opensolaris.org/os/licensing.
10*45039663SJohn Forte# See the License for the specific language governing permissions
11*45039663SJohn Forte# and limitations under the License.
12*45039663SJohn Forte#
13*45039663SJohn Forte# When distributing Covered Code, include this CDDL HEADER in each
14*45039663SJohn Forte# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15*45039663SJohn Forte# If applicable, add the following below this CDDL HEADER, with the
16*45039663SJohn Forte# fields enclosed by brackets "[]" replaced with your own identifying
17*45039663SJohn Forte# information: Portions Copyright [yyyy] [name of copyright owner]
18*45039663SJohn Forte#
19*45039663SJohn Forte# CDDL HEADER END
20*45039663SJohn Forte#
21*45039663SJohn Forte#
22*45039663SJohn Forte# Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
23*45039663SJohn Forte# Use is subject to license terms.
24*45039663SJohn Forte#
25*45039663SJohn Forte#
26*45039663SJohn Forte# cmd/stmfproxy/stmfproxy/Makefile
27*45039663SJohn Forte#
28*45039663SJohn Forte
29*45039663SJohn FortePROG	= svc-stmfproxy
30*45039663SJohn Forte
31*45039663SJohn ForteCOMMONBASE = ../../common
32*45039663SJohn Forte
33*45039663SJohn Forteinclude ../../Makefile.cmd
34*45039663SJohn Forte
35*45039663SJohn ForteDEMOFILES = \
36*45039663SJohn Forte	stmfproxy.xml
37*45039663SJohn Forte
38*45039663SJohn ForteDEMOBINFILES = \
39*45039663SJohn Forte	$(PROG)
40*45039663SJohn Forte
41*45039663SJohn ForteROOTDEMODIR	= $(ROOT)/usr/demo/comstar
42*45039663SJohn ForteROOTDEMOBINDIR	= $(ROOTDEMODIR)/bin
43*45039663SJohn ForteROOTDEMOFILES = $(DEMOFILES:%=$(ROOTDEMODIR)/%)
44*45039663SJohn ForteROOTDEMOBINFILES = $(DEMOBINFILES:%=$(ROOTDEMOBINDIR)/%)
45*45039663SJohn Forte
46*45039663SJohn FortePRODUCT=	$(PROG)
47*45039663SJohn ForteSRCS=		$(OBJS:%.o=./%.c)
48*45039663SJohn ForteOBJS=		stmfproxy.o
49*45039663SJohn ForteLLOBJS=		$(OBJS:%.o=%.ll)
50*45039663SJohn Forte#POFILES= $(OBJS:%.o=%.po)
51*45039663SJohn Forte#POFILE= stmfproxy.po
52*45039663SJohn Forte
53*45039663SJohn Forte$(ROOTDEMODIR)/stmfproxy.xml	:= FILEMODE = 0444
54*45039663SJohn Forte
55*45039663SJohn Forte
56*45039663SJohn ForteCCVERBOSE	=
57*45039663SJohn ForteLDLIBS += -lnsl -lstmf -lstmfproxy
58*45039663SJohn ForteCPPFLAGS += -I. -I$(COMMONBASE)/cmdparse
59*45039663SJohn Forte
60*45039663SJohn Forte# Uncomment the following to help with debugging
61*45039663SJohn Forte#CFLAGS += -g
62*45039663SJohn Forte#i386_COPTFLAG=
63*45039663SJohn Forte#i386_CCOPTFLAG=
64*45039663SJohn Forte
65*45039663SJohn Forte.KEEP_STATE:
66*45039663SJohn Forte
67*45039663SJohn Forte$(PROG): $(OBJS)
68*45039663SJohn Forte	$(LINK.c) -o $@ $(OBJS) $(LDLIBS)
69*45039663SJohn Forte	$(POST_PROCESS)
70*45039663SJohn Forte
71*45039663SJohn ForteLINTFLAGS += -erroff=E_FUNC_HAS_NO_RETURN_STMT
72*45039663SJohn ForteLINTFLAGS += -erroff=E_BAD_PTR_CAST_ALIGN
73*45039663SJohn Forte
74*45039663SJohn Forte.PARALLEL: $(OBJS)
75*45039663SJohn Forte
76*45039663SJohn Forteall:	$(PROG)
77*45039663SJohn Forte
78*45039663SJohn Forteclean:
79*45039663SJohn Forte	$(RM) $(PROG) $(OBJS) $(LLOBJS)
80*45039663SJohn Forte
81*45039663SJohn Fortelint:	lint_SRCS
82*45039663SJohn Forte
83*45039663SJohn Forte#$(POFILE): $(POFILES)
84*45039663SJohn Forte#	$(RM) $@
85*45039663SJohn Forte#	cat $(POFILES) > $@
86*45039663SJohn Forte
87*45039663SJohn Forteinstall: all $(ROOTDEMOFILES) $(ROOTDEMOBINFILES)
88*45039663SJohn Forte
89*45039663SJohn Forte$(ROOTDEMODIR) $(ROOTDEMOBINDIR):
90*45039663SJohn Forte	$(INS.dir)
91*45039663SJohn Forte
92*45039663SJohn Forte$(ROOTDEMODIR)/% $(ROOTDEMOBINDIR)/% : %
93*45039663SJohn Forte	$(INS.file)
94*45039663SJohn Forte
95*45039663SJohn Forte$(ROOTDEMOFILES): $(ROOTDEMODIR)
96*45039663SJohn Forte
97*45039663SJohn Forte$(ROOTDEMOBINFILES): $(ROOTDEMOBINDIR)
98*45039663SJohn Forte
99*45039663SJohn Fortecheck:	$(CHKMANIFEST)
100*45039663SJohn Forte	$(CSTYLE) -pPc $(SRCS:%=%)
101*45039663SJohn Forte
102*45039663SJohn Forte
103*45039663SJohn Forteinclude ../../Makefile.targ
104