Print this page
10051 cw(1) shouldn't have to translate -g

Split Close
Expand all
Collapse all
          --- old/usr/src/cmd/idmap/idmap/Makefile
          +++ new/usr/src/cmd/idmap/idmap/Makefile
↓ open down ↓ 18 lines elided ↑ open up ↑
  19   19  # CDDL HEADER END
  20   20  #
  21   21  #
  22   22  # Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
  23   23  #
  24   24  
  25   25  PROG =          idmap
  26   26  CLIENTOBJS =    idmap.o idmap_engine.o namemaps.o
  27   27  # idmap_clnt.o
  28   28  CLIENTSRCS =    $(CLIENTOBJS:%.o=%.c)
  29      -POFILES =       $(CLIENTOBJS:.o=.po)
       29 +POFILES =       $(CLIENTOBJS:.o=.po)
  30   30  OBJS =          $(CLIENTOBJS)
  31   31  SRCS =          $(CLIENTSRCS)
  32   32  IDMAP_PROT_DIR =        $(SRC)/head/rpcsvc
  33   33  
  34   34  include ../../Makefile.cmd
  35   35  
  36   36  CERRWARN +=     -_gcc=-Wno-parentheses
  37   37  CERRWARN +=     -_gcc=-Wno-switch
  38   38  CERRWARN +=     -_gcc=-Wno-unused-label
  39   39  CERRWARN +=     -_gcc=-Wno-char-subscripts
  40   40  CERRWARN +=     -_gcc=-Wno-unused-function
  41   41  CERRWARN +=     -_gcc=-Wno-uninitialized
  42   42  CERRWARN +=     -_gcc=-Wno-address
  43   43  
  44      -POFILE =        $(PROG)_all.po
       44 +POFILE =        $(PROG)_all.po
  45   45  LDLIBS +=       -lidmap -ladutils -lsldap -lldap
  46   46  FILEMODE =      0555
  47   47  
  48   48  INCS += -I. \
  49   49          -I../../../lib/libidmap/common \
  50   50          -I../../../lib/libadutils/common \
  51   51          -I../../../lib/libsldap/common \
  52   52          -I$(IDMAP_PROT_DIR)
  53   53  
  54   54  CFLAGS += $(CCVERBOSE)
  55   55  $(OBJS) :=      CPPFLAGS += $(INCS) -D_REENTRANT
  56   56  $(POFILE) :=    CPPFLAGS += $(INCS)
  57   57  
  58   58  lint_SRCS :=    CPPFLAGS += $(INCS)
  59   59  
  60   60  .KEEP_STATE:
  61   61  
  62   62  all: $(PROG)
  63   63  
  64   64  $(PROG): $(OBJS)
  65      -        $(LINK.c) -g -o $@ $(OBJS) $(LDLIBS)
       65 +        $(LINK.c) $(CCGDEBUG) -o $@ $(OBJS) $(LDLIBS)
  66   66          $(POST_PROCESS)
  67   67  
  68   68  $(POFILE): $(POFILES)
  69   69          $(RM) $@
  70   70          cat $(POFILES) > $@
  71   71  
  72   72  install: all $(ROOTUSRSBINPROG)
  73   73  
  74   74  clean:
  75   75          $(RM) $(OBJS)
  76   76  
  77   77  lint: lint_SRCS
  78   78  
  79   79  LINTFLAGS += -erroff=E_NAME_DEF_NOT_USED2
  80   80  
  81   81  include ../../Makefile.targ
  82   82  
  83   83  
    
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX