Check-in [742f8f4178]
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
pwb.o: pwb.c

## DLL Build
libtcl.@SHOBJEXT@: vfs_kitdll_data_tcl.o kitInit.o rechan.o pwb.o
	$(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)

# Test driver
test.o: test.c
test: test.o
	$(CC) $(CPPFLAGS) $(CFLAGS) -o test test.o -L. -ltcl -Wl,-R,`pwd`

# Cleanup routeines
clean:
	rm -f libtcl.so
	rm -f rechan.o kitInit.o
	rm -f vfs_kitdll_data_tcl.c vfs_kitdll_data_tcl.o
	rm -f vfs_kitdll.tcl.h
	rm -f test.o test

distclean: clean
	rm -f config.status config.log
	rm -f Makefile

.PHONY: all clean distclean







|
|
|







|






25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
pwb.o: pwb.c

## DLL Build
libtcl.@SHOBJEXT@: vfs_kitdll_data_tcl.o kitInit.o rechan.o pwb.o
	$(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)

# Test driver
tclsh.o: tclsh.c
tclsh: tclsh.o
	$(CC) $(CPPFLAGS) $(CFLAGS) -o tclsh tclsh.o -L. -ltcl -Wl,-R,`pwd`

# Cleanup routeines
clean:
	rm -f libtcl.so
	rm -f rechan.o kitInit.o
	rm -f vfs_kitdll_data_tcl.c vfs_kitdll_data_tcl.o
	rm -f vfs_kitdll.tcl.h
	rm -f tclsh.o tclsh

distclean: clean
	rm -f config.status config.log
	rm -f Makefile

.PHONY: all clean distclean

Name change from kitdll/buildsrc/kitdll-0.0/test.c to kitdll/buildsrc/kitdll-0.0/tclsh.c.