Overview
Comment: | Added an install target |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
f2fb48e25446a61ef3114bfd685bbd3f |
User & Date: | rkeene on 2018-07-03 05:41:24 |
Other Links: | manifest | tags |
Context
2018-07-03
| ||
05:58 | Updated missing ignores check-in: 82b672fc7f user: rkeene tags: trunk | |
05:41 | Added an install target check-in: f2fb48e254 user: rkeene tags: trunk | |
05:32 | Added release engineering scripts check-in: 014c8b664b user: rkeene tags: trunk | |
Changes
Modified Makefile.in from [373b671eea] to [545578bbef].
1 2 3 4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | - + + + + + + + + + + + | CC := @CC@ AR := @AR@ RANLIB := @RANLIB@ CFLAGS := @CFLAGS@ @SHOBJFLAGS@ |
︙ | |||
42 43 44 45 46 47 48 49 50 51 52 53 54 55 | 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 | + + + + + | blake2b.o: @srcdir@/blake2b/blake2b.c @srcdir@/blake2b/blake2.h @srcdir@/blake2b/blake2-impl.h $(CC) $(CPPFLAGS) $(CFLAGS) -o blake2b.o -c @srcdir@/blake2b/blake2b.c test: @EXTENSION_TARGET@ @srcdir@/build/test/test.tcl . install: @EXTENSION_TARGET@ pkgIndex.tcl $(INSTALL) -d '$(DESTDIR)$(PACKAGE_INSTALL_DIR)' $(INSTALL_PROGRAM) @EXTENSION_TARGET@ '$(DESTDIR)$(PACKAGE_INSTALL_DIR)' $(INSTALL_DATA) pkgIndex.tcl '$(DESTDIR)$(PACKAGE_INSTALL_DIR)' clean: rm -f @EXTENSION_TARGET@ nano.o rm -f blake2b.o tweetnacl.o randombytes.o distclean: clean rm -f Makefile pkgIndex.tcl-shared pkgIndex.tcl-static nano.syms rm -f pkgIndex.tcl |
︙ |