Print this page
7085 add support for "if" and "else" statements in dtrace


   3 #
   4 # The contents of this file are subject to the terms of the
   5 # Common Development and Distribution License (the "License").
   6 # You may not use this file except in compliance with the License.
   7 #
   8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
   9 # or http://www.opensolaris.org/os/licensing.
  10 # See the License for the specific language governing permissions
  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 (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
  23 # Copyright (c) 2012 by Delphix. All rights reserved.
  24 #
  25 
  26 LIBRARY = libdtrace.a
  27 VERS = .1
  28 
  29 LIBSRCS = \
  30         dt_aggregate.c \
  31         dt_as.c \
  32         dt_buf.c \
  33         dt_cc.c \
  34         dt_cg.c \
  35         dt_consume.c \
  36         dt_decl.c \
  37         dt_dis.c \
  38         dt_dof.c \
  39         dt_error.c \
  40         dt_errtags.c \

  41         dt_handle.c \
  42         dt_ident.c \
  43         dt_inttab.c \
  44         dt_link.c \
  45         dt_list.c \
  46         dt_open.c \
  47         dt_options.c \
  48         dt_program.c \
  49         dt_map.c \
  50         dt_module.c \
  51         dt_names.c \
  52         dt_parser.c \
  53         dt_pcb.c \
  54         dt_pid.c \
  55         dt_pq.c \
  56         dt_pragma.c \
  57         dt_print.c \
  58         dt_printf.c \
  59         dt_proc.c \
  60         dt_provider.c \




   3 #
   4 # The contents of this file are subject to the terms of the
   5 # Common Development and Distribution License (the "License").
   6 # You may not use this file except in compliance with the License.
   7 #
   8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
   9 # or http://www.opensolaris.org/os/licensing.
  10 # See the License for the specific language governing permissions
  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 (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
  23 # Copyright (c) 2011, 2014 by Delphix. All rights reserved.
  24 #
  25 
  26 LIBRARY = libdtrace.a
  27 VERS = .1
  28 
  29 LIBSRCS = \
  30         dt_aggregate.c \
  31         dt_as.c \
  32         dt_buf.c \
  33         dt_cc.c \
  34         dt_cg.c \
  35         dt_consume.c \
  36         dt_decl.c \
  37         dt_dis.c \
  38         dt_dof.c \
  39         dt_error.c \
  40         dt_errtags.c \
  41         dt_sugar.c \
  42         dt_handle.c \
  43         dt_ident.c \
  44         dt_inttab.c \
  45         dt_link.c \
  46         dt_list.c \
  47         dt_open.c \
  48         dt_options.c \
  49         dt_program.c \
  50         dt_map.c \
  51         dt_module.c \
  52         dt_names.c \
  53         dt_parser.c \
  54         dt_pcb.c \
  55         dt_pid.c \
  56         dt_pq.c \
  57         dt_pragma.c \
  58         dt_print.c \
  59         dt_printf.c \
  60         dt_proc.c \
  61         dt_provider.c \