Print this page
dccp: basic dtrace

Split Close
Expand all
Collapse all
          --- old/usr/src/lib/libdtrace/Makefile.com
          +++ new/usr/src/lib/libdtrace/Makefile.com
↓ open down ↓ 65 lines elided ↑ open up ↑
  66   66  
  67   67  LIBISASRCS = \
  68   68          dt_isadep.c
  69   69  
  70   70  OBJECTS = dt_lex.o dt_grammar.o $(MACHOBJS) $(LIBSRCS:%.c=%.o) $(LIBISASRCS:%.c=%.o)
  71   71  
  72   72  DRTISRC = drti.c
  73   73  DRTIOBJ = $(DRTISRC:%.c=%.o)
  74   74  
  75   75  DLIBSRCS += \
       76 +        dccp.d \
  76   77          errno.d \
  77   78          fc.d \
  78   79          io.d \
  79   80          ip.d \
  80   81          iscsit.d \
  81   82          net.d \
  82   83          nfs.d \
  83   84          nfssrv.d \
  84   85          procfs.d \
  85   86          regs.d \
↓ open down ↓ 16 lines elided ↑ open up ↑
 102  103  CLEANFILES += dt_lex.c dt_grammar.c dt_grammar.h y.output
 103  104  CLEANFILES += ../common/procfs.sed ../common/procfs.d
 104  105  CLEANFILES += ../common/io.sed ../common/io.d
 105  106  CLEANFILES += ../common/ip.sed ../common/ip.d
 106  107  CLEANFILES += ../common/net.sed ../common/net.d
 107  108  CLEANFILES += ../common/errno.d ../common/signal.d
 108  109  CLEANFILES += ../common/dt_errtags.c ../common/dt_names.c
 109  110  CLEANFILES += ../common/sysevent.sed ../common/sysevent.d
 110  111  CLEANFILES += ../common/tcp.sed ../common/tcp.d
 111  112  CLEANFILES += ../common/udp.sed ../common/udp.d
      113 +CLEANFILES += ../common/dccp.sed ../common/dccp.d
 112  114  
 113  115  CLOBBERFILES += drti.o
 114  116  
 115  117  CPPFLAGS += -I../common -I.
 116  118  CFLAGS += $(CCVERBOSE) $(C_BIGPICFLAGS)
 117  119  CFLAGS64 += $(CCVERBOSE) $(C_BIGPICFLAGS)
 118  120  YYCFLAGS =
 119  121  LDLIBS += -lgen -lproc -lrtld_db -lnsl -lsocket -lctf -lelf -lc
 120  122  DRTILDLIBS = $(LDLIBS.lib) -lc
 121  123  
↓ open down ↓ 64 lines elided ↑ open up ↑
 186  188  
 187  189  ../common/sysevent.d: ../common/sysevent.sed ../common/sysevent.d.in
 188  190          sed -f ../common/sysevent.sed < ../common/sysevent.d.in > $@
 189  191  
 190  192  ../common/tcp.d: ..//common/tcp.sed ../common/tcp.d.in
 191  193          sed -f ../common/tcp.sed < ../common/tcp.d.in > $@
 192  194  
 193  195  ../common/udp.d: ../common/udp.sed ../common/udp.d.in
 194  196          sed -f ../common/udp.sed < ../common/udp.d.in > $@
 195  197  
      198 +../common/dccp.d: ../common/dccp.sed ../common/dccp.d.in
      199 +        sed -f ../common/dccp.sed < ../common/dccp.d.in > $@
      200 +
 196  201  pics/%.o: ../$(MACH)/%.c
 197  202          $(COMPILE.c) -o $@ $<
 198  203          $(POST_PROCESS_O)
 199  204  
 200  205  pics/%.o: ../$(MACH)/%.s
 201  206          $(COMPILE.s) -o $@ $<
 202  207          $(POST_PROCESS_O)
 203  208  
 204  209  %.o: ../common/%.c
 205  210          $(COMPILE.c) -o $@ $<
↓ open down ↓ 30 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX