Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Updated to include comment in version script indicating that it is automatically generated |
|---|---|
| Timelines: | family | ancestors | descendants | both | new-driver |
| Files: | files | file ages | folders |
| SHA1: |
3c2ffdbe79994a302db6c0fbb7b4b04b |
| User & Date: | rkeene 2013-03-12 13:36:07 |
Context
|
2020-04-22
| ||
| 18:27 | WIP Leaf check-in: a666f280bd user: rkeene tags: new-driver-wip | |
|
2013-03-12
| ||
| 13:36 | Updated to include comment in version script indicating that it is automatically generated Leaf check-in: 3c2ffdbe79 user: rkeene tags: new-driver | |
|
2013-03-11
| ||
| 21:17 | Updated to correctly generate aclocal.m4 check-in: ee81d71865 user: rkeene tags: new-driver | |
Changes
Changes to Makefile.in.
| ︙ | ︙ | |||
38 39 40 41 42 43 44 | ## Build amalgamation of source to build a single object file libdact_combined.c: $(SRCOBJS) cat $(SRCOBJS) > libdact_combined.c ## Build GNU LD version script to strip symbols libdact.vers: libdact.syms.in | > | | 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
## Build amalgamation of source to build a single object file
libdact_combined.c: $(SRCOBJS)
cat $(SRCOBJS) > libdact_combined.c
## Build GNU LD version script to strip symbols
libdact.vers: libdact.syms.in
echo '/* This file is automatically generated. */' > libdact.vers
echo '{' >> libdact.vers
echo ' global:' >> libdact.vers
for symbol in `cat libdact.syms.in | sed 's/^@''SYMPREFIX@//'`; do \
echo " $${symbol};"; \
done >> libdact.vers
echo ' local:' >> libdact.vers
echo ' *;' >> libdact.vers
echo '};' >> libdact.vers
|
| ︙ | ︙ |