usr/src/cmd/gzip/Makefile.sfw
changeset 72 82bde2a81435
parent 71 121736d79438
child 73 73cc228b67a6
equal deleted inserted replaced
71:121736d79438 72:82bde2a81435
     1 #
       
     2 #
       
     3 # CDDL HEADER START
       
     4 #
       
     5 # The contents of this file are subject to the terms of the
       
     6 # Common Development and Distribution License (the "License").
       
     7 # You may not use this file except in compliance with the License.
       
     8 #
       
     9 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
       
    10 # or http://www.opensolaris.org/os/licensing.
       
    11 # See the License for the specific language governing permissions
       
    12 # and limitations under the License.
       
    13 #
       
    14 # When distributing Covered Code, include this CDDL HEADER in each
       
    15 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
       
    16 # If applicable, add the following below this CDDL HEADER, with the
       
    17 # fields enclosed by brackets "[]" replaced with your own identifying
       
    18 # information: Portions Copyright [yyyy] [name of copyright owner]
       
    19 #
       
    20 # CDDL HEADER END
       
    21 #
       
    22 # Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
       
    23 # Use is subject to license terms.
       
    24 #
       
    25 #ident	"@(#)Makefile.sfw	1.11	08/02/09 SMI"
       
    26 
       
    27 VER=gzip-1.3.5
       
    28 
       
    29 include ../Makefile.cmd
       
    30 
       
    31 all: $(VER)/config.status
       
    32 	(cd $(VER); env \
       
    33 	    LD_OPTIONS="-M $(SRC)/cmd/mapfile_noexstk" \
       
    34 	    CC=$(CC) CXX=$(CCC) \
       
    35 	    "CFLAGS=$(CFLAGS)" \
       
    36 	    CONFIG_SHELL=/usr/xpg4/bin/sh \
       
    37 	    PATH=$(SFW_PATH) \
       
    38 	    MAKE=$(CCSMAKE) \
       
    39 	    $(CCSMAKE) -e)
       
    40 	@find . -name core -exec rm -f {} \;
       
    41 
       
    42 test:	# there aren't any
       
    43 
       
    44 install: all
       
    45 	VERS=$(VER) $(SH) ./install-gzip
       
    46 
       
    47 $(VER)/config.status: $(VER)/configure
       
    48 	(cd $(VER); env \
       
    49 	    CC=$(CC) CXX=$(CCC) \
       
    50 	    "CFLAGS=$(CFLAGS)" \
       
    51 	    CONFIG_SHELL=/usr/xpg4/bin/sh \
       
    52 	    PATH=$(SFW_PATH) \
       
    53 	    MAKE=$(CCSMAKE) \
       
    54 	    ./configure --prefix=/usr \
       
    55 		--program-prefix=g)
       
    56 		
       
    57 $(VER)/configure: $(VER).tar.gz
       
    58 	gzip -dc $(VER).tar.gz | tar xopf -
       
    59 	(cd $(VER) \
       
    60 	; gpatch -p3 --no-backup-if-mismatch < ../gzip-security-diff \
       
    61 	; gpatch -p1 --no-backup-if-mismatch < ../gzip-6294656-6283819-diff \
       
    62 	; gpatch -p1 --no-backup-if-mismatch < ../gzip.c-message-diff )
       
    63 	(cd $(VER) ; autoconf -f )
       
    64 
       
    65 clean:
       
    66 	-rm -rf $(VER)
       
    67 
       
    68 include ../Makefile.targ