8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
+
+
|
rm -f tweetnacl.c.new tweetnacl.c
cp src/tweetnacl.c tweetnacl.c.new
tweetnacl.c: tweetnacl.c.new tweetnacl.h.new patches/tweetnacl-supercop.diff patches/tweetnacl-derivepubkey.diff
rm -f tweetnacl.c tweetnacl.h
patch -p1 < patches/tweetnacl-supercop.diff || ( rm -f tweetnacl.c.new tweetnacl.h.new; exit 1 )
patch -p1 < patches/tweetnacl-derivepubkey.diff || ( rm -f tweetnacl.c.new tweetnacl.h.new; exit 1 )
rm -f tweetnacl.c.new.orig tweetnacl.h.new.orig
mv tweetnacl.h.new tweetnacl.h
mv tweetnacl.c.new tweetnacl.c
tweetnacl.h: tweetnacl.c
tweetnacl.o: tweetnacl.c tweetnacl.h
$(CC) $(CPPFLAGS) $(CFLAGS) -DSUPERCOP=1 -I../blake2b/ -o tweetnacl.o -c tweetnacl.c
clean:
rm -f tweetnacl.c.new.orig tweetnacl.h.new.orig
rm -f tweetnacl.h.new tweetnacl.h
rm -f tweetnacl.c.new tweetnacl.c
rm -f tweetnacl.o
distclean: clean
.PHONY: all clean distclean
|