Overview
Comment: | Simplified and made Makefile even more explicit |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
d1ed4ce5f7a4b854311f378c89cfabbf |
User & Date: | rkeene on 2010-11-14 10:49:10 |
Other Links: | manifest | tags |
Context
2010-12-14
| ||
12:27 | TclPKCS11 0.9.7 Updated to support running "configure" in a directory other than the one with the source files Updated to include an "install" target (untested) check-in: ff1eeb5963 user: rkeene tags: release-0.9.7, trunk | |
2010-11-14
| ||
10:49 | Simplified and made Makefile even more explicit check-in: d1ed4ce5f7 user: rkeene tags: trunk | |
2010-10-12
| ||
00:58 | Removed references to "dllimport" check-in: e1252f4d5b user: rkeene tags: trunk | |
Changes
Modified Makefile.in from [87117fe1b6] to [9420b3ae08].
1 2 3 4 5 6 7 8 9 | CC = @CC@ CFLAGS = @CFLAGS@ @SHOBJFLAGS@ CPPFLAGS = @CPPFLAGS@ @DEFS@ LDFLAGS = SHOBJLDFLAGS = @SHOBJLDFLAGS@ LIBS = @LIBS@ all: tclpkcs11.@SHOBJEXT@ | < | > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | CC = @CC@ CFLAGS = @CFLAGS@ @SHOBJFLAGS@ CPPFLAGS = @CPPFLAGS@ @DEFS@ LDFLAGS = SHOBJLDFLAGS = @SHOBJLDFLAGS@ LIBS = @LIBS@ all: tclpkcs11.@SHOBJEXT@ tclpkcs11.o: tclpkcs11.c pkcs11.h pkcs11f.h pkcs11t.h $(CC) $(CPPFLAGS) $(CFLAGS) -o tclpkcs11.o -c tclpkcs11.c tclpkcs11.@SHOBJEXT@: tclpkcs11.o $(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) $(SHOBJLDFLAGS) -o tclpkcs11.@SHOBJEXT@ tclpkcs11.o $(LIBS) clean: rm -f tclpkcs11.@SHOBJEXT@ tclpkcs11.o rm -f tclpkcs11.@SHOBJEXT@.a tclpkcs11.@SHOBJEXT@.def |
︙ | ︙ |