Overview
Comment: | Added splint target to makefile |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
b59eaf52c097be6ee6db6da0d362ca12 |
User & Date: | rkeene on 2010-05-17 03:24:14 |
Other Links: | manifest | tags |
Context
2010-05-17
| ||
04:50 | Updated to build both debug library and release library check-in: 0fae105f13 user: rkeene tags: trunk | |
03:24 | Added splint target to makefile check-in: b59eaf52c0 user: rkeene tags: trunk | |
00:20 |
Fixed issues with signdecrypt buffer sizes
Centralized reading of identities Added debugging to determine why wrong applet ID is being stored in identity check-in: eaa9f36a2b user: rkeene tags: trunk | |
Changes
Modified Makefile.in from [f395f71fdd] to [53575a9140].
︙ | ︙ | |||
14 15 16 17 18 19 20 | prefix = @prefix@ exec_prefix = @exec_prefix@ libdir = @libdir@ @SET_MAKE@ all: libcackey.@SHOBJEXT@ | | | > > > > | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | prefix = @prefix@ exec_prefix = @exec_prefix@ libdir = @libdir@ @SET_MAKE@ all: libcackey.@SHOBJEXT@ cackey.o: cackey.c asn1-x509.h config.h $(CC) $(SHOBJFLAGS) $(CPPFLAGS) $(CFLAGS) -o cackey.o -c cackey.c asn1-x509.o: asn1-x509.c asn1-x509.h config.h $(CC) $(SHOBJFLAGS) $(CPPFLAGS) $(CFLAGS) -o asn1-x509.o -c asn1-x509.c libcackey.@SHOBJEXT@: cackey.o asn1-x509.o $(CC) $(SHOBJFLAGS) $(CPPFLAGS) $(CFLAGS) $(SHOBJLDFLAGS) $(LDFLAGS) -o libcackey.@SHOBJEXT@ cackey.o asn1-x509.o $(LIBS) test: test.c libcackey.@SHOBJEXT@ $(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -o test test.c -Wl,-R,. libcackey.@SHOBJEXT@ splint-cackey.txt: cackey.c asn1-x509.c asn1-x509.h config.h splint $(CPPFLAGS) -weak +posixlib -I/usr/include/PCSC -Ipkcs11 cackey.c > splint-cackey.txt install: libcackey.@SHOBJEXT@ -mkdir "$(DESTDIR)$(libdir)" cp libcackey.@SHOBJEXT@ "$(DESTDIR)$(libdir)/" clean: rm -f libcackey.@SHOBJEXT@ rm -f cackey.o asn1-x509.o rm -f test rm -f splint-cackey.txt distclean: clean rm -f config.log config.status config.h Makefile mrproper: distclean rm -f configure config.h.in aclocal.m4 *~ |
︙ | ︙ |