tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

Makefile (774B)


      1 all: d.h d2.h sqrtm1.h base.h base2.h \
      2 ge_add.h ge_sub.h \
      3 ge_madd.h ge_msub.h \
      4 ge_p2_dbl.h \
      5 pow225521.h pow22523.h
      6 
      7 d.h: d.py
      8 python d.py > d.h
      9 
     10 d2.h: d2.py
     11 python d2.py > d2.h
     12 
     13 sqrtm1.h: sqrtm1.py
     14 python sqrtm1.py > sqrtm1.h
     15 
     16 base.h: base.py
     17 python base.py > base.h
     18 
     19 base2.h: base2.py
     20 python base2.py > base2.h
     21 
     22 ge_add.h: ge_add.q q2h.sh
     23 ./q2h.sh < ge_add.q > ge_add.h
     24 
     25 ge_sub.h: ge_sub.q q2h.sh
     26 ./q2h.sh < ge_sub.q > ge_sub.h
     27 
     28 ge_madd.h: ge_madd.q q2h.sh
     29 ./q2h.sh < ge_madd.q > ge_madd.h
     30 
     31 ge_msub.h: ge_msub.q q2h.sh
     32 ./q2h.sh < ge_msub.q > ge_msub.h
     33 
     34 ge_p2_dbl.h: ge_p2_dbl.q q2h.sh
     35 ./q2h.sh < ge_p2_dbl.q > ge_p2_dbl.h
     36 
     37 pow22523.h: pow22523.q q2h.sh
     38 ./q2h.sh < pow22523.q > pow22523.h
     39 
     40 pow225521.h: pow225521.q q2h.sh
     41 ./q2h.sh < pow225521.q > pow225521.h