Print this page
9852 enable ld(1) guidance and deflib assertions for the illumos build

Split Close
Expand all
Collapse all
          --- old/usr/src/tools/cscope-fast/Makefile
          +++ new/usr/src/tools/cscope-fast/Makefile
↓ open down ↓ 19 lines elided ↑ open up ↑
  20   20  # CDDL HEADER END
  21   21  #
  22   22  
  23   23  #
  24   24  # Copyright 2004 Sun Microsystems, Inc.  All rights reserved.
  25   25  # Use is subject to license terms.
  26   26  #
  27   27  
  28   28  PROG= cscope-fast
  29   29  
  30      -OBJS=   main.o dir.o crossref.o scanner.o lookup.o command.o display.o \
       30 +OBJS=   main.o dir.o crossref.o scanner.o lookup.o command.o display.o \
  31   31          find.o edit.o exec.o help.o history.o input.o menu.o alloc.o \
  32   32          cgrep.o compath.o invlib.o logdir.o \
  33   33          mouse.o mygetenv.o mygetwd.o mypopen.o \
  34   34          vpaccess.o vpfopen.o vpinit.o vpopen.o vpstat.o
  35   35  SRCS=   $(OBJS:%.o=%.c)
  36   36  CLEANFILES += $(OBJS) scanner.c
  37   37  TMPDIR= /tmp
  38   38  
  39   39  include ../Makefile.tools
  40   40  
↓ open down ↓ 4 lines elided ↑ open up ↑
  45   45  STMTMAX=        10000
  46   46  YYLMAX=         10251
  47   47  CFLAGS +=       -DPATLEN=$(PATLEN) -DSTMTMAX=$(STMTMAX) -DYYLMAX=$(YYLMAX)
  48   48  CERRWARN +=     -_gcc=-Wno-parentheses
  49   49  CERRWARN +=     -_gcc=-Wno-implicit-function-declaration
  50   50  CERRWARN +=     -_gcc=-Wno-unused
  51   51  CERRWARN +=     -_gcc=-Wno-uninitialized
  52   52  
  53   53  CFLAGS +=       $(CCVERBOSE)
  54   54  LDLIBS +=       -lcurses -ll
       55 +NATIVE_LIBS += libcurses.so libl.so
  55   56  
  56   57  .KEEP_STATE:
  57   58  
  58   59  .PARALLEL: $(OBJS)
  59   60  
  60   61  all:    $(PROG)
  61   62  
  62   63  # because of goto's in the scanner
  63   64  scanner.o := CCVERBOSE=
  64   65  
↓ open down ↓ 12 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX