10Sstevel@tonic-gate# 20Sstevel@tonic-gate# CDDL HEADER START 30Sstevel@tonic-gate# 40Sstevel@tonic-gate# The contents of this file are subject to the terms of the 5*10207SJames.McPherson@Sun.COM# Common Development and Distribution License (the "License"). 6*10207SJames.McPherson@Sun.COM# You may not use this file except in compliance with the License. 70Sstevel@tonic-gate# 80Sstevel@tonic-gate# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 90Sstevel@tonic-gate# or http://www.opensolaris.org/os/licensing. 100Sstevel@tonic-gate# See the License for the specific language governing permissions 110Sstevel@tonic-gate# and limitations under the License. 120Sstevel@tonic-gate# 130Sstevel@tonic-gate# When distributing Covered Code, include this CDDL HEADER in each 140Sstevel@tonic-gate# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 150Sstevel@tonic-gate# If applicable, add the following below this CDDL HEADER, with the 160Sstevel@tonic-gate# fields enclosed by brackets "[]" replaced with your own identifying 170Sstevel@tonic-gate# information: Portions Copyright [yyyy] [name of copyright owner] 180Sstevel@tonic-gate# 190Sstevel@tonic-gate# CDDL HEADER END 200Sstevel@tonic-gate# 210Sstevel@tonic-gate# 22*10207SJames.McPherson@Sun.COM# Copyright 2009 Sun Microsystems, Inc. All rights reserved. 230Sstevel@tonic-gate# Use is subject to license terms. 240Sstevel@tonic-gate# 250Sstevel@tonic-gate 260Sstevel@tonic-gate# 270Sstevel@tonic-gate# cmd/cmd-inet/usr.sbin/ipqosconf/Makefile 280Sstevel@tonic-gate 290Sstevel@tonic-gatePROG= ipqosconf 300Sstevel@tonic-gateOBJS= ipqosconf.o 310Sstevel@tonic-gateSRCS= $(OBJS:%.o=%.c) 320Sstevel@tonic-gateHDRS= ipqosconf.h 330Sstevel@tonic-gate 340Sstevel@tonic-gateMODS= dlcosmk \ 350Sstevel@tonic-gate flowacct \ 360Sstevel@tonic-gate ipgpc \ 370Sstevel@tonic-gate dscpmk \ 380Sstevel@tonic-gate tokenmt \ 390Sstevel@tonic-gate tswtclmt 400Sstevel@tonic-gate 410Sstevel@tonic-gateTYPES= $(MODS:%=%.types) 420Sstevel@tonic-gate 430Sstevel@tonic-gateROOTLIBIPQOSCONF= $(ROOTLIB)/ipqosconf 440Sstevel@tonic-gateROOTLIBIPQOSCONFTYPES = $(TYPES:%=$(ROOTLIBIPQOSCONF)/%) 450Sstevel@tonic-gate 460Sstevel@tonic-gateinclude ../../../Makefile.cmd 470Sstevel@tonic-gateinclude ../../Makefile.cmd-inet 480Sstevel@tonic-gate 49*10207SJames.McPherson@Sun.COM$(ROOTUSRSBIN)/$(PROG) := FILEMODE= 0755 500Sstevel@tonic-gate$(ROOTLIBIPQOSCONFTYPES) := FILEMODE= 0444 510Sstevel@tonic-gate 520Sstevel@tonic-gate#pull in prototype for strtok_r 530Sstevel@tonic-gateCPPFLAGS += -D__EXTENSIONS__ 540Sstevel@tonic-gate 550Sstevel@tonic-gateLDLIBS += -lsocket -lnsl -lnvpair -lipp 560Sstevel@tonic-gate 570Sstevel@tonic-gate.KEEP_STATE: 580Sstevel@tonic-gate 590Sstevel@tonic-gate.INIT: $(HDRS) 600Sstevel@tonic-gate 610Sstevel@tonic-gateall: $(PROG) 620Sstevel@tonic-gate 630Sstevel@tonic-gate$(PROG): $(OBJS) $(HDRS) 640Sstevel@tonic-gate $(LINK.c) -o $@ $(OBJS) $(LDLIBS) 650Sstevel@tonic-gate $(POST_PROCESS) 660Sstevel@tonic-gate 670Sstevel@tonic-gateinstall: all $(ROOTUSRSBINPROG) $(ROOTLIBIPQOSCONF) .WAIT \ 680Sstevel@tonic-gate $(ROOTLIBIPQOSCONFTYPES) 690Sstevel@tonic-gate 700Sstevel@tonic-gate$(ROOTLIBIPQOSCONF): 710Sstevel@tonic-gate $(INS.dir) 720Sstevel@tonic-gate 730Sstevel@tonic-gate$(ROOTLIBIPQOSCONF)/%: % 740Sstevel@tonic-gate $(INS.file) 750Sstevel@tonic-gate 760Sstevel@tonic-gateclean: 770Sstevel@tonic-gate $(RM) $(OBJS) 780Sstevel@tonic-gate 790Sstevel@tonic-gatelint: lint_SRCS 800Sstevel@tonic-gate 810Sstevel@tonic-gateinclude ../../../Makefile.targ 82