Overview
Comment: | Updated to use simpler and more portable build system |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
a68d12f98bc87248d6362b8e2a7c6d89 |
User & Date: | rkeene on 2011-09-09 14:09:13 |
Other Links: | manifest | tags |
Context
2011-09-09
| ||
14:09 | Fixed missed clean-up file check-in: 8babc9b7bd user: rkeene tags: trunk | |
14:09 | Updated to use simpler and more portable build system check-in: a68d12f98b user: rkeene tags: trunk | |
13:45 | Updated to produce libctk.so check-in: e327ead7cb user: rkeene tags: trunk | |
Changes
Modified .fossil-settings/ignore-glob from [6736ca86e2] to [2f54d45bc3].
1 2 3 4 5 6 7 8 9 10 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | + + + + | Makefile Makefile/* aclocal.m4 aclocal.m4/* autom4te.cache autom4te.cache/* config.log config.log/* config.status config.status/* configure configure/* pkgIndex.tcl pkgIndex.tcl/* |
Modified Makefile.in from [7eaddc5372] to [d1aff0f5a4].
︙ | |||
70 71 72 73 74 75 76 77 78 79 80 81 82 83 | 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 | + + + | # to -g, change the following line: CFLAGS = @CFLAGS@ # Linker options (-L/.../lib) necessary to find the TCL # and curses libraries (if any). It is (hopefully) filled in # properly by the configure script. LDFLAGS = @LDFLAGS@ # Linker options when compiling a shared object SHOBJLDFLAGS = @SHOBJLDFLAGS@ # Preprocessor options (-I/.../include) necessary to find the TCL # and curses header files (if any). It is (hopefully) filled in # properly by the configure script. CPPFLAGS = @CPPFLAGS@ # Preprocessor definitions. It should be filled in properly by the |
︙ | |||
172 173 174 175 176 177 178 | 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 | - - - + + + | all: @TARGETS@ libctk.a: $(OBJS) rm -f libctk.a ar cr libctk.a $(OBJS) $(RANLIB) libctk.a |
︙ |
Added aclocal/shobj.m4 version [2d19fed3b4].