xref: /illumos-gate/usr/src/lib/fm/libseslog/Makefile (revision 241c90a0)
1e4f5a11dSJames Kremer#
2e4f5a11dSJames Kremer# CDDL HEADER START
3e4f5a11dSJames Kremer#
4e4f5a11dSJames Kremer# The contents of this file are subject to the terms of the
5e4f5a11dSJames Kremer# Common Development and Distribution License (the "License").
6e4f5a11dSJames Kremer# You may not use this file except in compliance with the License.
7e4f5a11dSJames Kremer#
8e4f5a11dSJames Kremer# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9e4f5a11dSJames Kremer# or http://www.opensolaris.org/os/licensing.
10e4f5a11dSJames Kremer# See the License for the specific language governing permissions
11e4f5a11dSJames Kremer# and limitations under the License.
12e4f5a11dSJames Kremer#
13e4f5a11dSJames Kremer# When distributing Covered Code, include this CDDL HEADER in each
14e4f5a11dSJames Kremer# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15e4f5a11dSJames Kremer# If applicable, add the following below this CDDL HEADER, with the
16e4f5a11dSJames Kremer# fields enclosed by brackets "[]" replaced with your own identifying
17e4f5a11dSJames Kremer# information: Portions Copyright [yyyy] [name of copyright owner]
18e4f5a11dSJames Kremer#
19e4f5a11dSJames Kremer# CDDL HEADER END
20e4f5a11dSJames Kremer#
21e4f5a11dSJames Kremer#
22e4f5a11dSJames Kremer# Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
23e4f5a11dSJames Kremer#
24e4f5a11dSJames Kremer
25e4f5a11dSJames Kremerinclude		../../Makefile.lib
26e4f5a11dSJames Kremerinclude		../Makefile.lib
27e4f5a11dSJames Kremer
28e4f5a11dSJames KremerHDRDIR=		common
29e4f5a11dSJames KremerFMHDRS=		libseslog.h
30e4f5a11dSJames Kremer
31e4f5a11dSJames KremerSUBDIRS=	$(MACH)
32e4f5a11dSJames Kremer$(BUILD64)SUBDIRS += $(MACH64)
33e4f5a11dSJames Kremer
34e4f5a11dSJames Kremerall :=		TARGET= all
35e4f5a11dSJames Kremerclean :=	TARGET= clean
36e4f5a11dSJames Kremerclobber :=	TARGET= clobber
37e4f5a11dSJames Kremerinstall :=	TARGET= install
38e4f5a11dSJames Kremer
39e4f5a11dSJames Kremer.KEEP_STATE:
40e4f5a11dSJames Kremer
41*241c90a0SRichard Loweall clean clobber install: $(SUBDIRS)
42e4f5a11dSJames Kremer
43e4f5a11dSJames Kremerinstall_h: $(ROOTFMHDRS)
44e4f5a11dSJames Kremer
45e4f5a11dSJames Kremercheck: $(CHECKHDRS)
46e4f5a11dSJames Kremer
47e4f5a11dSJames Kremer$(SUBDIRS): FRC
48e4f5a11dSJames Kremer	@cd $@; pwd; $(MAKE) $(TARGET)
49e4f5a11dSJames Kremer
50e4f5a11dSJames KremerFRC:
51e4f5a11dSJames Kremer
52e4f5a11dSJames Kremerinclude ../../Makefile.targ
53e4f5a11dSJames Kremerinclude ../Makefile.targ
54