Overview
Comment: | Ensure patch residual files are cleaned up |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
16343ae691c693e2b81c745c1960582a |
User & Date: | rkeene on 2018-07-02 01:02:02 |
Other Links: | manifest | tags |
Context
2018-07-02
| ||
03:51 | When in debugging mode, do not strip out all symbols check-in: 6108bf018f user: rkeene tags: trunk | |
01:02 | Ensure patch residual files are cleaned up check-in: 16343ae691 user: rkeene tags: trunk | |
01:01 | Only export the symbols we actually want to export check-in: a05b5da951 user: rkeene tags: trunk | |
Changes
Modified tweetnacl/Makefile from [c444485edc] to [b9469f5858].
︙ | ︙ | |||
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | 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 ) 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.h.new tweetnacl.h rm -f tweetnacl.c.new tweetnacl.c rm -f tweetnacl.o distclean: clean .PHONY: all clean distclean | > > | 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 |