Overview
Comment: | Updated clean target |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 660a5d0fd1b153b8ad6b26b5ae42bf0ab54891ca |
User & Date: | rkeene on 2010-09-29 23:16:24 |
Other Links: | manifest | tags |
Context
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 | |
23:15 |
Created GNU autoconf script for KitDLL
Made KitDLL build a shared object Added test driver check-in: b11b735302 user: rkeene tags: trunk | |
Changes
Modified kitdll/buildsrc/kitdll-0.0/Makefile.in from [991be31d01] to [5ac5966f70].
30 30 # Test driver 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 + rm -f libtcl.so 37 38 rm -f vfs_kitdll_data_tcl.c 38 - rm -f vfs_kitdll_data_tcl.so vfs_kitdll_data_tcl.o 39 + rm -f vfs_kitdll_data_tcl.o 39 40 rm -f test.o test 40 41 41 42 distclean: clean 42 43 rm -f config.status config.log 43 44 rm -f Makefile 44 45 45 46 .PHONY: all clean distclean