Makefile revision 1eea4119ffbe77304e95eb3044905255ff920d33
230N/A#
230N/A# CDDL HEADER START
230N/A#
230N/A# The contents of this file are subject to the terms of the
230N/A# Common Development and Distribution License (the "License").
230N/A# You may not use this file except in compliance with the License.
230N/A#
230N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
230N/A# or http://www.opensolaris.org/os/licensing.
230N/A# See the License for the specific language governing permissions
230N/A# and limitations under the License.
230N/A#
230N/A# When distributing Covered Code, include this CDDL HEADER in each
230N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
230N/A# If applicable, add the following below this CDDL HEADER, with the
230N/A# fields enclosed by brackets "[]" replaced with your own identifying
230N/A# information: Portions Copyright [yyyy] [name of copyright owner]
230N/A#
230N/A# CDDL HEADER END
230N/A
1062N/A
230N/A#
230N/A#
230N/A# Copyright 2010 Sun Microsystems, Inc. All rights reserved.
230N/A# Use is subject to license terms.
230N/A#
230N/A#
1195N/A
230N/ATABLEDIR = ../praudit
230N/A
230N/APROG = auditreduce
1190N/ASRCS = main.c option.c proc.c time.c token.c regex2.c $(TABLEDIR)/toktable.c
230N/AOBJS = main.o option.o proc.o time.o token.o regex2.o toktable.o
230N/A
439N/Ainclude $(SRC)/cmd/Makefile.cmd
439N/A
230N/ATEXT_DOMAIN = SUNW_OST_OSCMD
230N/APOFILE = $(PROG).po
368N/AMSGFILES = $(SRCS)
368N/A
1190N/ACPPFLAGS += -I$(TABLEDIR) -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
230N/ALDLIBS += -lnsl -lbsm -lscf -ltsol
972N/A
230N/A.KEEP_STATE:
857N/A
230N/Aall: $(PROG)
230N/A
230N/Ainstall: all $(ROOTUSRSBINPROG)
340N/A
340N/A$(PROG): $(OBJS)
230N/A $(CC) -o $(PROG) $(OBJS) $(LDFLAGS) $(LDLIBS)
230N/A $(POST_PROCESS)
857N/A
1195N/Atoktable.o: $(TABLEDIR)/toktable.c
972N/A $(COMPILE.c) $(TABLEDIR)/toktable.c
230N/A
230N/A$(POFILE): $(MSGFILES)
1062N/A $(BUILDPO.msgfiles)
1062N/A
1062N/A_msg: $(MSGDOMAINPOFILE)
1062N/A
230N/Alint: lint_SRCS
340N/A
340N/Aclean:
1190N/A $(RM) $(OBJS)
1062N/A
1062N/Ainclude $(SRC)/cmd/Makefile.targ
1062N/Ainclude $(SRC)/Makefile.msg.targ
1062N/A