Check-in [50190b3c1d]
Overview
Comment:Updated clean target
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1:50190b3c1df31389d1f121281fd9f79e65a75985
User & Date: rkeene on 2010-09-29 23:19:15
Other Links: manifest | tags
Context
2010-09-30
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

2010-09-29
23:19
Updated clean target check-in: 50190b3c1d user: rkeene tags: trunk
23:16
Updated clean target check-in: 660a5d0fd1 user: rkeene tags: trunk
Changes

Modified kitdll/buildsrc/kitdll-0.0/Makefile.in from [5ac5966f70] to [5dbeeca9bd].

    31     31   test.o: test.c
    32     32   test: test.o
    33     33   	$(CC) $(CPPFLAGS) $(CFLAGS) -o test test.o -L. -ltcl -Wl,-R,`pwd`
    34     34   
    35     35   # Cleanup routeines
    36     36   clean:
    37     37   	rm -f libtcl.so
    38         -	rm -f vfs_kitdll_data_tcl.c
    39         -	rm -f vfs_kitdll_data_tcl.o
           38  +	rm -f rechan.o kitInit.o
           39  +	rm -f vfs_kitdll_data_tcl.c vfs_kitdll_data_tcl.o
           40  +	rm -f vfs_kitdll.tcl.h
    40     41   	rm -f test.o test
    41     42   
    42     43   distclean: clean
    43     44   	rm -f config.status config.log
    44     45   	rm -f Makefile
    45     46   
    46     47   .PHONY: all clean distclean