Print this page
11528 Makefile.noget can get gone
11529 Use -Wno-maybe-initialized


  11 # and limitations under the License.
  12 #
  13 # When distributing Covered Code, include this CDDL HEADER in each
  14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
  15 # If applicable, add the following below this CDDL HEADER, with the
  16 # fields enclosed by brackets "[]" replaced with your own identifying
  17 # information: Portions Copyright [yyyy] [name of copyright owner]
  18 #
  19 # CDDL HEADER END
  20 #
  21 #
  22 # Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
  23 # Use is subject to license terms.
  24 #
  25 
  26 PROG= unpack
  27 
  28 include ../Makefile.cmd
  29 CFLAGS += $(CCVERBOSE)
  30 CERRWARN += -_gcc=-Wno-parentheses
  31 CERRWARN += -_gcc=-Wno-uninitialized
  32 CPPFLAGS += -D_FILE_OFFSET_BITS=64 
  33 
  34 LDLIBS += -lcmdutils -lsec
  35 
  36 XGETFLAGS += -a -x unpack.xcl
  37 .KEEP_STATE:
  38 
  39 all: $(PROG) 
  40 
  41 pcat: $(PROG)
  42 
  43 install: all $(ROOTPROG)
  44         -$(RM) $(ROOTBIN)/pcat
  45         $(SYMLINK) ./$(PROG) $(ROOTBIN)/pcat
  46 
  47 clean:
  48 
  49 lint:   lint_PROG
  50 
  51 include ../Makefile.targ


  11 # and limitations under the License.
  12 #
  13 # When distributing Covered Code, include this CDDL HEADER in each
  14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
  15 # If applicable, add the following below this CDDL HEADER, with the
  16 # fields enclosed by brackets "[]" replaced with your own identifying
  17 # information: Portions Copyright [yyyy] [name of copyright owner]
  18 #
  19 # CDDL HEADER END
  20 #
  21 #
  22 # Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
  23 # Use is subject to license terms.
  24 #
  25 
  26 PROG= unpack
  27 
  28 include ../Makefile.cmd
  29 CFLAGS += $(CCVERBOSE)
  30 CERRWARN += -_gcc=-Wno-parentheses
  31 CERRWARN += $(CNOWARN_UNINIT)
  32 CPPFLAGS += -D_FILE_OFFSET_BITS=64 
  33 
  34 LDLIBS += -lcmdutils -lsec
  35 
  36 XGETFLAGS += -a -x unpack.xcl
  37 .KEEP_STATE:
  38 
  39 all: $(PROG) 
  40 
  41 pcat: $(PROG)
  42 
  43 install: all $(ROOTPROG)
  44         -$(RM) $(ROOTBIN)/pcat
  45         $(SYMLINK) ./$(PROG) $(ROOTBIN)/pcat
  46 
  47 clean:
  48 
  49 lint:   lint_PROG
  50 
  51 include ../Makefile.targ