Differences From Artifact [991be31d01]:
- File
kitdll/buildsrc/kitdll-0.0/Makefile.in
— part of check-in
[b11b735302]
at
2010-09-29 23:15:37
on branch trunk
— Created GNU autoconf script for KitDLL
Made KitDLL build a shared object
Added test driver (user: rkeene, size: 1226) [annotate] [blame] [check-ins using]
To Artifact [5ac5966f70]:
- File kitdll/buildsrc/kitdll-0.0/Makefile.in — part of check-in [660a5d0fd1] at 2010-09-29 23:16:24 on branch trunk — Updated clean target (user: rkeene, size: 1220) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
30 31 32 33 34 35 36 37 | # 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 vfs_kitdll_data_tcl.c | > | | 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | # 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 vfs_kitdll_data_tcl.c rm -f vfs_kitdll_data_tcl.o rm -f test.o test distclean: clean rm -f config.status config.log rm -f Makefile .PHONY: all clean distclean |