Print this page
6091 avl_add doesn't assert on non-debug builds
Reviewed by: Andy Stormont <astormont@racktopsystems.com>


  22 # Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
  23 # Use is subject to license terms.
  24 #
  25 # ident "%Z%%M% %I%     %E% SMI"
  26 #
  27 
  28 LIBRARY=        libavl.a
  29 VERS=           .1
  30 OBJECTS=        avl.o
  31 
  32 include ../../Makefile.lib
  33 include ../../Makefile.rootfs
  34 
  35 LIBS =          $(DYNLIB) $(LINTLIB)
  36 SRCS =          $(COMDIR)/avl.c
  37 
  38 $(LINTLIB) :=   SRCS = $(SRCDIR)/$(LINTSRC)
  39 
  40 COMDIR =        $(SRC)/common/avl
  41 

  42 CFLAGS +=       $(CCVERBOSE)
  43 
  44 .KEEP_STATE:
  45 
  46 all : $(LIBS)
  47 
  48 lint : lintcheck
  49 
  50 pics/%.o:        $(COMDIR)/%.c
  51         $(COMPILE.c) -o $@ $<
  52         $(POST_PROCESS_O)
  53 
  54 include ../../Makefile.targ


  22 # Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
  23 # Use is subject to license terms.
  24 #
  25 # ident "%Z%%M% %I%     %E% SMI"
  26 #
  27 
  28 LIBRARY=        libavl.a
  29 VERS=           .1
  30 OBJECTS=        avl.o
  31 
  32 include ../../Makefile.lib
  33 include ../../Makefile.rootfs
  34 
  35 LIBS =          $(DYNLIB) $(LINTLIB)
  36 SRCS =          $(COMDIR)/avl.c
  37 
  38 $(LINTLIB) :=   SRCS = $(SRCDIR)/$(LINTSRC)
  39 
  40 COMDIR =        $(SRC)/common/avl
  41 
  42 LDLIBS +=       -lc
  43 CFLAGS +=       $(CCVERBOSE)
  44 
  45 .KEEP_STATE:
  46 
  47 all : $(LIBS)
  48 
  49 lint : lintcheck
  50 
  51 pics/%.o:        $(COMDIR)/%.c
  52         $(COMPILE.c) -o $@ $<
  53         $(POST_PROCESS_O)
  54 
  55 include ../../Makefile.targ