31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
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
|
>
|
|
|
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
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
|