Makefile revision 657a8c206b913d1ee578fd725f0b25eca5b77253
3853N/A#
3853N/A# CDDL HEADER START
3853N/A#
3853N/A# The contents of this file are subject to the terms of the
3853N/A# Common Development and Distribution License (the "License").
3853N/A# You may not use this file except in compliance with the License.
3853N/A#
3853N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
3853N/A# or http://www.opensolaris.org/os/licensing.
3853N/A# See the License for the specific language governing permissions
3853N/A# and limitations under the License.
3853N/A#
3853N/A# When distributing Covered Code, include this CDDL HEADER in each
3853N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
3853N/A# If applicable, add the following below this CDDL HEADER, with the
3853N/A# fields enclosed by brackets "[]" replaced with your own identifying
3853N/A# information: Portions Copyright [yyyy] [name of copyright owner]
3853N/A#
3853N/A# CDDL HEADER END
3853N/A#
3853N/A#
3853N/A# Copyright 2009 Sun Microsystems, Inc. All rights reserved.
3853N/A# Use is subject to license terms.
3853N/A#
3853N/A#
6334N/A
3853N/Ainclude ../../Makefile.master
3853N/Ainclude ../Makefile.lib
3853N/A
3853N/ASUBDIRS = binfile \
3853N/A remote \
3853N/A syslog
3853N/A
3853N/Aall := TARGET= all
3853N/Aclean := TARGET= clean
3853N/Aclobber := TARGET= clobber
3853N/Adelete := TARGET= delete
3853N/Ainstall := TARGET= install
3853N/Alint := TARGET= lint
3853N/Apackage := TARGET= package
3853N/A_msg := TARGET= _msg
3853N/A
3853N/Aall package clean clobber install: $(SUBDIRS)
3853N/A
3853N/AHDRS= auditd.h
3853N/AROOTDIRS= $(ROOT)/usr/include/security
3853N/A
3853N/AROOTHDRS= $(HDRS:%=$(ROOTDIRS)/%)
3853N/A$(ROOTHDRS) := FILEMODE = 644
3853N/A
3853N/ACHECKHDRS= $(HDRS:%.h=%.check)
3853N/A
3853N/A# install rule
3853N/A$(ROOTDIRS)/%: %
3853N/A $(INS.file)
3853N/A
3853N/A.KEEP_STATE:
3853N/A
3853N/A.PARALLEL: $(SUBDIRS)
3853N/A
3853N/Ainstall: install_h $(SUBDIRS)
3853N/A
3853N/Ainstall_h: $(ROOTDIRS) .WAIT $(ROOTHDRS)
3853N/A
3853N/A_msg: $(SUBDIRS)
3853N/A
3853N/Acatalog: $(SUBDIRS)
3853N/A
3853N/Acheck: $(CHECKHDRS)
3853N/A
3853N/Alint: $(SUBDIRS)
3853N/A
3853N/A$(ROOTDIRS):
3853N/A $(INS.dir)
3853N/A
3853N/A$(SUBDIRS): FRC
3853N/A @cd $@; pwd; $(MAKE) $(TARGET)
3853N/A
3853N/AFRC:
3853N/A