1*9396SMatthew.Ahrens@Sun.COM# 2*9396SMatthew.Ahrens@Sun.COM# CDDL HEADER START 3*9396SMatthew.Ahrens@Sun.COM# 4*9396SMatthew.Ahrens@Sun.COM# The contents of this file are subject to the terms of the 5*9396SMatthew.Ahrens@Sun.COM# Common Development and Distribution License (the "License"). 6*9396SMatthew.Ahrens@Sun.COM# You may not use this file except in compliance with the License. 7*9396SMatthew.Ahrens@Sun.COM# 8*9396SMatthew.Ahrens@Sun.COM# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9*9396SMatthew.Ahrens@Sun.COM# or http://www.opensolaris.org/os/licensing. 10*9396SMatthew.Ahrens@Sun.COM# See the License for the specific language governing permissions 11*9396SMatthew.Ahrens@Sun.COM# and limitations under the License. 12*9396SMatthew.Ahrens@Sun.COM# 13*9396SMatthew.Ahrens@Sun.COM# When distributing Covered Code, include this CDDL HEADER in each 14*9396SMatthew.Ahrens@Sun.COM# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15*9396SMatthew.Ahrens@Sun.COM# If applicable, add the following below this CDDL HEADER, with the 16*9396SMatthew.Ahrens@Sun.COM# fields enclosed by brackets "[]" replaced with your own identifying 17*9396SMatthew.Ahrens@Sun.COM# information: Portions Copyright [yyyy] [name of copyright owner] 18*9396SMatthew.Ahrens@Sun.COM# 19*9396SMatthew.Ahrens@Sun.COM# CDDL HEADER END 20*9396SMatthew.Ahrens@Sun.COM# 21*9396SMatthew.Ahrens@Sun.COM# 22*9396SMatthew.Ahrens@Sun.COM# Copyright 2009 Sun Microsystems, Inc. All rights reserved. 23*9396SMatthew.Ahrens@Sun.COM# Use is subject to license terms. 24*9396SMatthew.Ahrens@Sun.COM# 25*9396SMatthew.Ahrens@Sun.COM 26*9396SMatthew.Ahrens@Sun.COMinclude ../Makefile.lib 27*9396SMatthew.Ahrens@Sun.COM 28*9396SMatthew.Ahrens@Sun.COMSUBDIRS= $(MACH) 29*9396SMatthew.Ahrens@Sun.COMXGETTEXT= $(GNUXGETTEXT) 30*9396SMatthew.Ahrens@Sun.COMXGETFLAGS= $(GNUXGETFLAGS) 31*9396SMatthew.Ahrens@Sun.COM 32*9396SMatthew.Ahrens@Sun.COMall := TARGET= all 33*9396SMatthew.Ahrens@Sun.COMinstall := TARGET= install 34*9396SMatthew.Ahrens@Sun.COMclean := TARGET= clean 35*9396SMatthew.Ahrens@Sun.COMclobber := TARGET= clobber 36*9396SMatthew.Ahrens@Sun.COMlint := TARGET= lint 37*9396SMatthew.Ahrens@Sun.COM 38*9396SMatthew.Ahrens@Sun.COMMSGFILES = `$(FIND) . -name '*.py' -o -name '*.c'` 39*9396SMatthew.Ahrens@Sun.COMPOFILE = pyzfs.po 40*9396SMatthew.Ahrens@Sun.COM 41*9396SMatthew.Ahrens@Sun.COM.KEEP_STATE: 42*9396SMatthew.Ahrens@Sun.COM 43*9396SMatthew.Ahrens@Sun.COMall install clean clobber lint: $(SUBDIRS) 44*9396SMatthew.Ahrens@Sun.COM 45*9396SMatthew.Ahrens@Sun.COM$(POFILE): pofile_MSGFILES 46*9396SMatthew.Ahrens@Sun.COM 47*9396SMatthew.Ahrens@Sun.COM_msg: $(MSGDOMAINPOFILE) 48*9396SMatthew.Ahrens@Sun.COM 49*9396SMatthew.Ahrens@Sun.COM$(SUBDIRS): FRC 50*9396SMatthew.Ahrens@Sun.COM @cd $@; pwd; $(MAKE) $(TARGET) 51*9396SMatthew.Ahrens@Sun.COM 52*9396SMatthew.Ahrens@Sun.COMFRC: 53*9396SMatthew.Ahrens@Sun.COM 54*9396SMatthew.Ahrens@Sun.COMinclude ../../Makefile.msg.targ 55