Print this page
4185 New hash algorithm support

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/Makefile.rules
          +++ new/usr/src/uts/common/Makefile.rules
↓ open down ↓ 14 lines elided ↑ open up ↑
  15   15  # If applicable, add the following below this CDDL HEADER, with the
  16   16  # fields enclosed by brackets "[]" replaced with your own identifying
  17   17  # information: Portions Copyright [yyyy] [name of copyright owner]
  18   18  #
  19   19  # CDDL HEADER END
  20   20  #
  21   21  
  22   22  #
  23   23  # Copyright (c) 1991, 2010, Oracle and/or its affiliates. All rights reserved.
  24   24  # Copyright (c) 2012 Nexenta Systems, Inc. All rights reserved.
       25 +# Copyright 2013 Saso Kiselkov. All rights reserved.
  25   26  #
  26   27  
  27   28  #
  28   29  # uts/common/Makefile.rules
  29   30  #
  30   31  #       This Makefile defines all the file build rules for the directory
  31   32  # uts/common and its children. These are the source files which may
  32   33  # be considered common to all SunOS systems.
  33   34  #
  34   35  #       The following two-level ordering must be maintained in this file.
↓ open down ↓ 1478 lines elided ↑ open up ↑
1513 1514          $(CTFCONVERT_O)
1514 1515  
1515 1516  $(OBJS_DIR)/%.o:                $(UTSBASE)/common/rpc/sec/%.c
1516 1517          $(COMPILE.c) -o $@ $<
1517 1518          $(CTFCONVERT_O)
1518 1519  
1519 1520  $(OBJS_DIR)/%.o:                $(UTSBASE)/common/rpc/sec_gss/%.c
1520 1521          $(COMPILE.c) -o $@ $<
1521 1522          $(CTFCONVERT_O)
1522 1523  
     1524 +$(OBJS_DIR)/%.o:                $(COMMONBASE)/crypto/edonr/%.c
     1525 +        $(COMPILE.c) -o $@ $<
     1526 +        $(CTFCONVERT_O)
     1527 +
1523 1528  $(OBJS_DIR)/%.o:                $(COMMONBASE)/crypto/sha1/%.c
1524 1529          $(COMPILE.c) -o $@ $<
1525 1530          $(CTFCONVERT_O)
1526 1531  
1527 1532  $(OBJS_DIR)/%.o:                $(COMMONBASE)/crypto/sha2/%.c
1528 1533          $(COMPILE.c) -o $@ $<
1529 1534          $(CTFCONVERT_O)
1530 1535  
     1536 +$(OBJS_DIR)/%.o:                $(COMMONBASE)/crypto/skein/%.c
     1537 +        $(COMPILE.c) -o $@ $<
     1538 +        $(CTFCONVERT_O)
     1539 +
1531 1540  $(OBJS_DIR)/%.o:                $(UTSBASE)/common/syscall/%.c
1532 1541          $(COMPILE.c) -o $@ $<
1533 1542          $(CTFCONVERT_O)
1534 1543  
1535 1544  $(OBJS_DIR)/%.o:                $(UTSBASE)/common/tnf/%.c
1536 1545          $(COMPILE.c) -o $@ $<
1537 1546          $(CTFCONVERT_O)
1538 1547  
1539 1548  $(OBJS_DIR)/%.o:                $(COMMONBASE)/tsol/%.c
1540 1549          $(COMPILE.c) -o $@ $<
↓ open down ↓ 1104 lines elided ↑ open up ↑
2645 2654  
2646 2655  $(LINTS_DIR)/%.ln:              $(UTSBASE)/common/rpc/%.c
2647 2656          @($(LHEAD) $(LINT.c) $< $(LTAIL))
2648 2657  
2649 2658  $(LINTS_DIR)/%.ln:              $(UTSBASE)/common/rpc/sec/%.c
2650 2659          @($(LHEAD) $(LINT.c) $< $(LTAIL))
2651 2660  
2652 2661  $(LINTS_DIR)/%.ln:              $(UTSBASE)/common/rpc/sec_gss/%.c
2653 2662          @($(LHEAD) $(LINT.c) $< $(LTAIL))
2654 2663  
     2664 +$(LINTS_DIR)/%.ln:              $(COMMONBASE)/crypto/edonr/%.c
     2665 +        @($(LHEAD) $(LINT.c) $< $(LTAIL))
     2666 +
2655 2667  $(LINTS_DIR)/%.ln:              $(COMMONBASE)/crypto/sha1/%.c
2656 2668          @($(LHEAD) $(LINT.c) $< $(LTAIL))
2657 2669  
2658 2670  $(LINTS_DIR)/%.ln:              $(COMMONBASE)/crypto/sha2/%.c
2659 2671          @($(LHEAD) $(LINT.c) $< $(LTAIL))
2660 2672  
     2673 +$(LINTS_DIR)/%.ln:              $(COMMONBASE)/crypto/skein/%.c
     2674 +        @($(LHEAD) $(LINT.c) $< $(LTAIL))
     2675 +
2661 2676  $(LINTS_DIR)/%.ln:              $(UTSBASE)/common/syscall/%.c
2662 2677          @($(LHEAD) $(LINT.c) $< $(LTAIL))
2663 2678  
2664 2679  $(LINTS_DIR)/%.ln:              $(UTSBASE)/common/tnf/%.c
2665 2680          @($(LHEAD) $(LINT.c) $< $(LTAIL))
2666 2681  
2667 2682  $(LINTS_DIR)/%.ln:              $(COMMONBASE)/tsol/%.c
2668 2683          @($(LHEAD) $(LINT.c) $< $(LTAIL))
2669 2684  
2670 2685  $(LINTS_DIR)/%.ln:              $(COMMONBASE)/util/%.c
↓ open down ↓ 50 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX