Home | History | Annotate | Download | only in scrypt
      1 CONFIGURE_ARGS="\
      2  \
      3 "
      4 
      5 # unneeded directories
      6 UNNEEDED_SOURCES="\
      7 lib/scryptenc \
      8 "
      9 
     10 # unneeded files
     11 UNNEEDED_SOURCES+="\
     12 config.h.in \
     13 configure \
     14 FORMAT \
     15 main.c \
     16 Makefile.in \
     17 scrypt.1 \
     18 lib/crypto/crypto_aesctr.c \
     19 lib/crypto/crypto_aesctr.h \
     20 lib/crypto/crypto_scrypt-nosse.c \
     21 lib/crypto/sha256.c \
     22 lib/crypto/sha256.h \
     23 lib/util/memlimit.c \
     24 lib/util/memlimit.h \
     25 lib/util/readpass.c \
     26 lib/util/readpass.h \
     27 lib/util/warn.c \
     28 lib/util/warn.h \
     29 "
     30 
     31 NEEDED_SOURCES="\
     32 config.h \
     33 lib \
     34 scrypt_platform.h \
     35 "
     36 
     37 SCRYPT_INCLUDES="\
     38 lib/crypto \
     39 lib/util \
     40 "
     41 
     42 SCRYPT_SOURCES="\
     43 lib/crypto/crypto_scrypt-ref.c \
     44 "
     45 
     46 SCRYPT_SOURCES_arm="\
     47 "
     48 
     49 SCRYPT_SOURCES_EXCLUDES_arm="\
     50 "
     51 
     52 SCRYPT_SOURCES_arm_neon="\
     53 lib/crypto/crypto_scrypt-neon.c \
     54 "
     55 
     56 SCRYPT_SOURCES_EXCLUDES_arm_neon="\
     57 lib/crypto/crypto_scrypt-ref.c \
     58 "
     59 
     60 SCRYPT_SOURCES_mips="\
     61 "
     62 
     63 SCRYPT_SOURCES_EXCLUDES_mips="\
     64 "
     65 
     66 SCRYPT_SOURCES_x86="\
     67 lib/crypto/crypto_scrypt-sse.c \
     68 "
     69 
     70 SCRYPT_SOURCES_EXCLUDES_x86="\
     71 lib/crypto/crypto_scrypt-ref.c \
     72 "
     73 
     74 SCRYPT_SOURCES_x86_64="\
     75 lib/crypto/crypto_scrypt-sse.c \
     76 "
     77 
     78 SCRYPT_SOURCES_EXCLUDES_x86_64="\
     79 lib/crypto/crypto_scrypt-ref.c \
     80 "
     81 
     82 SCRYPT_PATCHES="\
     83 use_openssl_pbkdf2.patch \
     84 arm-neon.patch \
     85 "
     86 
     87 SCRYPT_PATCHES_use_openssl_pbkdf2_SOURCES="\
     88 lib/crypto/crypto_scrypt-ref.c \
     89 "
     90 
     91 SCRYPT_PATCHES_bionic_SOURCES="\
     92 lib/crypto/crypto_scrypt-neon.c \
     93 lib/crypto/crypto_scrypt-neon-salsa208.h \
     94 "
     95