Makefile revision 7014882c6a3672fd0e5d60200af8643ae53c5928
1029N/A#
1029N/A# CDDL HEADER START
1339N/A#
1029N/A# The contents of this file are subject to the terms of the
1339N/A# Common Development and Distribution License (the "License").
1029N/A# You may not use this file except in compliance with the License.
1029N/A#
1075N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
1075N/A# or http://www.opensolaris.org/os/licensing.
1075N/A# See the License for the specific language governing permissions
1075N/A# and limitations under the License.
1075N/A#
1075N/A# When distributing Covered Code, include this CDDL HEADER in each
1075N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
1075N/A# If applicable, add the following below this CDDL HEADER, with the
1075N/A# fields enclosed by brackets "[]" replaced with your own identifying
1075N/A# information: Portions Copyright [yyyy] [name of copyright owner]
1075N/A#
1075N/A# CDDL HEADER END
1075N/A#
1075N/A#
1075N/A# Copyright (c) 1992, 2010, Oracle and/or its affiliates. All rights reserved.
1075N/A#
1075N/A
1029N/APROG = auditd
1029N/A
1029N/AMANIFEST = auditd.xml
1029N/ASVCMETHOD = svc-auditd
1029N/A
1029N/Ainclude $(SRC)/cmd/Makefile.cmd
1370N/A
1029N/AROOTMANIFESTDIR = $(ROOTSVCSYSTEM)
1029N/A
1370N/ALIBBSM = $(SRC)/lib/libbsm/common
1370N/AAUDITD = $(SRC)/cmd/auditd
1370N/A
1029N/ACPPFLAGS += -D_REENTRANT
1029N/ACPPFLAGS += -I$(LIBBSM) -I$(AUDITD)
1029N/A
1029N/ACERRWARN += -_gcc=-Wno-parentheses
1029N/A
1339N/ALDLIBS += -lbsm -lsecdb
1123N/A
1123N/AOBJS = auditd.o doorway.o queue.o
1029N/ASRCS = $(OBJS:%.o=%.c)
1029N/A
1276N/APOFILE = $(PROG).po
1351N/AMSGFILES = $(SRCS)
1029N/A
1132N/A.KEEP_STATE:
1132N/A
1132N/Aall: $(PROG)
1029N/A
1029N/Ainstall: all $(ROOTUSRSBINPROG) \
1029N/A $(ROOTMANIFEST) $(ROOTSVCMETHOD)
1029N/A
1351N/A$(PROG): $(SRCS) $(OBJS)
1351N/A $(LINK.c) $(OBJS) -o $@ $(LDLIBS)
1351N/A $(POST_PROCESS)
1029N/A
1075N/Alint: lint_SRCS
1029N/A
1029N/A$(POFILE): $(MSGFILES)
1029N/A $(BUILDPO.msgfiles)
1029N/A
1029N/A_msg: $(MSGDOMAINPOFILE)
1029N/A
1029N/Aclean:
1029N/A $(RM) $(OBJS)
1029N/A
1029N/Acheck: $(CHKMANIFEST)
1029N/A
1029N/Ainclude $(SRC)/cmd/Makefile.targ
1029N/Ainclude $(SRC)/Makefile.msg.targ
1029N/A