1*4b22b933Srs200217# 2*4b22b933Srs200217# CDDL HEADER START 3*4b22b933Srs200217# 4*4b22b933Srs200217# The contents of this file are subject to the terms of the 5*4b22b933Srs200217# Common Development and Distribution License (the "License"). 6*4b22b933Srs200217# You may not use this file except in compliance with the License. 7*4b22b933Srs200217# 8*4b22b933Srs200217# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9*4b22b933Srs200217# or http://www.opensolaris.org/os/licensing. 10*4b22b933Srs200217# See the License for the specific language governing permissions 11*4b22b933Srs200217# and limitations under the License. 12*4b22b933Srs200217# 13*4b22b933Srs200217# When distributing Covered Code, include this CDDL HEADER in each 14*4b22b933Srs200217# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15*4b22b933Srs200217# If applicable, add the following below this CDDL HEADER, with the 16*4b22b933Srs200217# fields enclosed by brackets "[]" replaced with your own identifying 17*4b22b933Srs200217# information: Portions Copyright [yyyy] [name of copyright owner] 18*4b22b933Srs200217# 19*4b22b933Srs200217# CDDL HEADER END 20*4b22b933Srs200217# 21*4b22b933Srs200217# Copyright 2007 Sun Microsystems, Inc. All rights reserved. 22*4b22b933Srs200217# Use is subject to license terms. 23*4b22b933Srs200217# 24*4b22b933Srs200217#ident "%Z%%M% %I% %E% SMI" 25*4b22b933Srs200217 26*4b22b933Srs200217include ../Makefile.lib 27*4b22b933Srs200217 28*4b22b933Srs200217HDR = dns_sd.h 29*4b22b933Srs200217HDRDIR = common 30*4b22b933Srs200217SUBDIRS = $(MACH) 31*4b22b933Srs200217$(BUILD64)SUBDIRS += $(MACH64) 32*4b22b933Srs200217 33*4b22b933Srs200217all := TARGET = all 34*4b22b933Srs200217clean := TARGET = clean 35*4b22b933Srs200217clobber := TARGET = clobber 36*4b22b933Srs200217install := TARGET = install 37*4b22b933Srs200217lint := TARGET = lint 38*4b22b933Srs200217 39*4b22b933Srs200217.KEEP_STATE: 40*4b22b933Srs200217 41*4b22b933Srs200217all install: install_h $(SUBDIRS) .WAIT java 42*4b22b933Srs200217 43*4b22b933Srs200217clean clobber: $(SUBDIRS) 44*4b22b933Srs200217 45*4b22b933Srs200217ROOTHDRDIR= $(ROOT)/usr/include 46*4b22b933Srs200217ROOTHDRS= $(HDR:%=$(ROOTHDRDIR)/%) 47*4b22b933Srs200217 48*4b22b933Srs200217install_h: $(ROOTHDRS) 49*4b22b933Srs200217 50*4b22b933Srs200217check: 51*4b22b933Srs200217 52*4b22b933Srs200217lint: $(SUBDIRS) 53*4b22b933Srs200217 54*4b22b933Srs200217$(SUBDIRS) java: FRC 55*4b22b933Srs200217 @cd $@; pwd; $(MAKE) $(TARGET) 56*4b22b933Srs200217 57*4b22b933Srs200217FRC: 58*4b22b933Srs200217 59*4b22b933Srs200217include ../Makefile.targ 60