Overview
| Comment: | Fixed issue with test library not including the appropriate libs | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | descendants | both | trunk | 
| Files: | files | file ages | folders | 
| SHA1: | 37a5c34d9fe4cdc36c572742618ce82b | 
| User & Date: | rkeene on 2016-02-15 08:44:22 | 
| Other Links: | manifest | tags | 
Context
| 2016-02-15 | ||
| 09:00 | Added basic AppFS build script check-in: 036a594834 user: rkeene tags: trunk | |
| 08:44 | Fixed issue with test library not including the appropriate libs check-in: 37a5c34d9f user: rkeene tags: trunk | |
| 08:36 | Updated to create better Debian package (untested) check-in: 3b8c1a6846 user: rkeene tags: trunk | |
Changes
Modified Makefile.in from [893390ad11] to [6effe24266].
| ︙ | ︙ | |||
| 46 47 48 49 50 51 52 | libcackey_g.a: cackey_g.o rm -f libcackey_g.a $(AR) rc libcackey_g.a cackey_g.o -$(RANLIB) libcackey_g.a test: test.c libcackey_g.@SHOBJEXT@ | | | 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | 
libcackey_g.a: cackey_g.o
	rm -f libcackey_g.a
	$(AR) rc libcackey_g.a cackey_g.o
	-$(RANLIB) libcackey_g.a
test: test.c libcackey_g.@SHOBJEXT@
	$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -o test test.c -Wl,-R,. libcackey_g.@SHOBJEXT@ $(LIBS)
test-afl.data: test
	tmpLogFile='log.$(shell openssl rand -hex 16)'; \
		./test 2> $${tmpLogFile}; \
		echo -ne "$$( \
			grep 'Returned Value:' $${tmpLogFile} | sed 's@^.*/@@;s@ = {@ @;s@})$$@@;s@,@@g;s@ @\\x@g;s@\\@ \\@' | while IFS=' ' read -r count string; do \
				printf '\\x%02x\\x%02x%s' $$[$${count} / 256] $$[$${count} % 256] "$${string}"; \
 | 
| ︙ | ︙ |