Overview
Comment: | Renamed test driver "tclsh" |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 742f8f41784fc48264a8b93e50476c905a2cb8dd |
User & Date: | rkeene on 2010-09-30 05:38:13 |
Other Links: | manifest | tags |
Context
2010-09-30
| ||
05:43 | Reorganized Makefile so object files are not specified in multiple places check-in: c321bdebc8 user: rkeene tags: trunk | |
05:38 | Renamed test driver "tclsh" check-in: 742f8f4178 user: rkeene tags: trunk | |
05:35 |
Fixed test driver to call initialization routine -- changed to tclsh.
Updated to support determing encoding from environment Removed debugging printfs/puts check-in: 8fde0c7fbf user: rkeene tags: trunk | |
Changes
Modified kitdll/buildsrc/kitdll-0.0/Makefile.in from [0d3b835065] to [5283919552].
25 25 pwb.o: pwb.c 26 26 27 27 ## DLL Build 28 28 libtcl.@SHOBJEXT@: vfs_kitdll_data_tcl.o kitInit.o rechan.o pwb.o 29 29 $(CC) $(CPPFLAGS) $(CFLAGS) -o libtcl.so vfs_kitdll_data_tcl.o kitInit.o rechan.o pwb.o $(LDFLAGS) $(SHOBJLDFLAGS) -Wl,--whole-archive $(STATICLIBS) -Wl,--no-whole-archive $(LIBS) 30 30 31 31 # Test driver 32 -test.o: test.c 33 -test: test.o 34 - $(CC) $(CPPFLAGS) $(CFLAGS) -o test test.o -L. -ltcl -Wl,-R,`pwd` 32 +tclsh.o: tclsh.c 33 +tclsh: tclsh.o 34 + $(CC) $(CPPFLAGS) $(CFLAGS) -o tclsh tclsh.o -L. -ltcl -Wl,-R,`pwd` 35 35 36 36 # Cleanup routeines 37 37 clean: 38 38 rm -f libtcl.so 39 39 rm -f rechan.o kitInit.o 40 40 rm -f vfs_kitdll_data_tcl.c vfs_kitdll_data_tcl.o 41 41 rm -f vfs_kitdll.tcl.h 42 - rm -f test.o test 42 + rm -f tclsh.o tclsh 43 43 44 44 distclean: clean 45 45 rm -f config.status config.log 46 46 rm -f Makefile 47 47 48 48 .PHONY: all clean distclean
Name change from kitdll/buildsrc/kitdll-0.0/test.c to kitdll/buildsrc/kitdll-0.0/tclsh.c.
whitespace changes only