Overview
Comment: | Fixed rule for building C-ified Tcl script |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | tls-1-7 |
Files: | files | file ages | folders |
SHA1: |
ff3a5954e8f2d44b29b5a3863e41f195 |
User & Date: | rkeene on 2016-11-24 04:45:20 |
Other Links: | branch diff | manifest | tags |
Context
2016-11-24
| ||
04:47 | Added rules to the "install" target check-in: d6cf1c2b2c user: rkeene tags: tls-1-7 | |
04:45 | Fixed rule for building C-ified Tcl script check-in: ff3a5954e8 user: rkeene tags: tls-1-7 | |
04:44 | Added comments to Makefile check-in: 4a2c0df32c user: rkeene tags: tls-1-7 | |
Changes
Modified Makefile.in from [d487d4dbb0] to [65107b5f05].
︙ | ︙ | |||
25 26 27 28 29 30 31 | tlsBIO.o: @[email protected]/tlsBIO.c @[email protected]/tlsInt.h tlsIO.o: @[email protected]/tlsIO.c @[email protected]/tlsInt.h tlsX509.o: @[email protected]/tlsX509.c @[email protected]/tlsInt.h # Create a C-source-ified version of the script resources # for TclTLS so that we only need a single file to enable # this extension | | | | 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | tlsBIO.o: @[email protected]/tlsBIO.c @[email protected]/tlsInt.h tlsIO.o: @[email protected]/tlsIO.c @[email protected]/tlsInt.h tlsX509.o: @[email protected]/tlsX509.c @[email protected]/tlsInt.h # Create a C-source-ified version of the script resources # for TclTLS so that we only need a single file to enable # this extension @[email protected]/tls.tcl.h: @[email protected]/tls.tcl xxd -i < '@[email protected]/tls.tcl' > '@[email protected]/tls.tcl.h.new' mv '@[email protected]/tls.tcl.h.new' '@[email protected]/tls.tcl.h' # Generic target for building files from the "srcdir" # tree -- the default target will not match paths %.o: @[email protected]/%.c $(CC) $(CPPFLAGS) $(CFLAGS) -o "[email protected]" -c "$<" |
︙ | ︙ |