Overview
Comment: | Minor cleanup of Makefile |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
eb2aa33baa9088a4492f703446095577 |
User & Date: | rkeene on 2018-07-08 21:32:27 |
Other Links: | manifest | tags |
Context
2018-07-08
| ||
21:33 | Testing requires pkgIndex.tcl, ensure that dependency is built check-in: c58e10a154 user: rkeene tags: trunk | |
21:32 | Minor cleanup of Makefile check-in: eb2aa33baa user: rkeene tags: trunk | |
21:31 | When compiling statically ensure our ABI is still exported correctly by creating an amalgamation check-in: 357419ec34 user: rkeene tags: trunk | |
Changes
Modified Makefile.in from [919c942773] to [8c51f82b67].
︙ | |||
39 40 41 42 43 44 45 | 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 | - - - - - - - - - + + + + + + + + + | nano-amalgamation.c: @srcdir@/nano.c @srcdir@/randombytes.c @srcdir@/tweetnacl/tweetnacl.c @srcdir@/blake2b/blake2b.c Makefile rm -f nano-amalgamation.c cat @srcdir@/nano.c @srcdir@/randombytes.c @srcdir@/tweetnacl/tweetnacl.c @srcdir@/blake2b/blake2b.c > nano-amalgamation.c nano-amalgamation.o: nano-amalgamation.c @srcdir@/tweetnacl/tweetnacl.h @srcdir@/blake2b/blake2.h @srcdir@/randombytes.h nano.tcl.h @srcdir@/blake2b/blake2-impl.h Makefile $(CC) $(CPPFLAGS) $(CFLAGS) -o nano-amalgamation.o -c nano-amalgamation.c |
︙ |