1*f875b4ebSrica# 2*f875b4ebSrica# CDDL HEADER START 3*f875b4ebSrica# 4*f875b4ebSrica# The contents of this file are subject to the terms of the 5*f875b4ebSrica# Common Development and Distribution License (the "License"). 6*f875b4ebSrica# You may not use this file except in compliance with the License. 7*f875b4ebSrica# 8*f875b4ebSrica# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9*f875b4ebSrica# or http://www.opensolaris.org/os/licensing. 10*f875b4ebSrica# See the License for the specific language governing permissions 11*f875b4ebSrica# and limitations under the License. 12*f875b4ebSrica# 13*f875b4ebSrica# When distributing Covered Code, include this CDDL HEADER in each 14*f875b4ebSrica# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15*f875b4ebSrica# If applicable, add the following below this CDDL HEADER, with the 16*f875b4ebSrica# fields enclosed by brackets "[]" replaced with your own identifying 17*f875b4ebSrica# information: Portions Copyright [yyyy] [name of copyright owner] 18*f875b4ebSrica# 19*f875b4ebSrica# CDDL HEADER END 20*f875b4ebSrica# 21*f875b4ebSrica# 22*f875b4ebSrica# Copyright 2007 Sun Microsystems, Inc. All rights reserved. 23*f875b4ebSrica# Use is subject to license terms. 24*f875b4ebSrica# 25*f875b4ebSrica#ident "%Z%%M% %I% %E% SMI" 26*f875b4ebSrica# 27*f875b4ebSrica# cmd/tsol/tnd/Makefile 28*f875b4ebSrica# 29*f875b4ebSricaPROG= tnd 30*f875b4ebSricaOBJS= tnd.o 31*f875b4ebSrica 32*f875b4ebSricaSRCS= $(OBJS:.o=.c) 33*f875b4ebSrica 34*f875b4ebSricaHDRS= tnd.h 35*f875b4ebSrica 36*f875b4ebSricaPOFILES = tnd.po 37*f875b4ebSrica 38*f875b4ebSricainclude ../../Makefile.cmd 39*f875b4ebSrica 40*f875b4ebSricaMANIFEST= tnd.xml 41*f875b4ebSricaROOTMANIFESTDIR = $(ROOTSVCNETWORK) 42*f875b4ebSricaSVCMETHOD= svc-tnd 43*f875b4ebSrica$(ROOTMANIFEST) := FILEMODE= 444 44*f875b4ebSrica 45*f875b4ebSricaIFLAGS += -I. 46*f875b4ebSricaLDLIBS += -lnsl -ltsnet 47*f875b4ebSricaCPPFLAGS += $(IFLAGS) 48*f875b4ebSricaCPPFLAGS += -DDEBUG 49*f875b4ebSrica 50*f875b4ebSrica.KEEP_STATE: 51*f875b4ebSrica 52*f875b4ebSricaall: $(PROG) 53*f875b4ebSrica 54*f875b4ebSricainstall: all $(ROOTTSOLPROG) $(ROOTMANIFEST) $(ROOTSVCMETHOD) \ 55*f875b4ebSrica $(ROOTUSRSBIN)/$(PROG) 56*f875b4ebSrica 57*f875b4ebSricaclean: 58*f875b4ebSrica $(RM) $(OBJS) tags 59*f875b4ebSrica 60*f875b4ebSricalint: lint_SRCS 61*f875b4ebSrica 62*f875b4ebSricainclude ../Makefile.targ 63