Makefile revision 7014882c6a3672fd0e5d60200af8643ae53c5928
0N/A#
0N/A# CDDL HEADER START
1061N/A#
0N/A# The contents of this file are subject to the terms of the
0N/A# Common Development and Distribution License (the "License").
919N/A# You may not use this file except in compliance with the License.
919N/A#
919N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
919N/A# or http://www.opensolaris.org/os/licensing.
919N/A# See the License for the specific language governing permissions
919N/A# and limitations under the License.
919N/A#
919N/A# When distributing Covered Code, include this CDDL HEADER in each
919N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
919N/A# If applicable, add the following below this CDDL HEADER, with the
919N/A# fields enclosed by brackets "[]" replaced with your own identifying
919N/A# information: Portions Copyright [yyyy] [name of copyright owner]
919N/A#
919N/A# CDDL HEADER END
919N/A#
919N/A
919N/A#
0N/A# Copyright 2007 Sun Microsystems, Inc. All rights reserved.
0N/A# Use is subject to license terms.
0N/A#
493N/A
156N/APROG= compress
493N/ASRCS= compress.c $(SRC)/common/util/getresponse.c
493N/AOBJS= compress.o getresponse.o
493N/A
493N/Ainclude ../Makefile.cmd
493N/A
0N/A.KEEP_STATE:
493N/A
493N/ACFLAGS += $(CCVERBOSE)
493N/ACERRWARN += -_gcc=-Wno-parentheses
493N/ACERRWARN += -_gcc=-Wno-clobbered
493N/ACPPFLAGS += -D_FILE_OFFSET_BITS=64 -I $(SRC)/common/util
0N/ALINTFLAGS += -u
493N/A
493N/ALDLIBS += -lcmdutils -lsec
851N/A
493N/Aall: $(PROG)
493N/A
0N/A%.o: $(SRC)/common/util/%.c
970N/A $(COMPILE.c) $(OUTPUT_OPTION) $<
970N/A $(POST_PROCESS_O)
970N/A
970N/A$(PROG): $(OBJS)
970N/A $(LINK.c) $(OBJS) -o $@ $(LDLIBS)
970N/A $(POST_PROCESS)
851N/A
851N/Ainstall: all $(ROOTPROG)
851N/A $(RM) $(ROOTBIN)/uncompress $(ROOTBIN)/zcat
851N/A $(LN) $(ROOTPROG) $(ROOTBIN)/uncompress
851N/A $(LN) $(ROOTPROG) $(ROOTBIN)/zcat
851N/A
970N/Aclean:
970N/A $(RM) $(OBJS)
970N/A
970N/Alint: lint_SRCS
970N/A
970N/Ainclude ../Makefile.targ
970N/A