57
58
59
60
61
62
63
64
65
66
67
68
69
70
| 57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
+
| test: @[email protected]
cd tests && @[email protected] all.tcl
# Clean the local build directory for rebuild against the same configuration
clean:
rm -f tls.o tlsBIO.o tlsIO.o tlsX509.o
rm -f [email protected]@
rm -f [email protected]@.a [email protected]@.def
rm -f tcltls.a.new tcltls.a
rm -f tls.tcl.h.new.1 tls.tcl.h.new.2
@if [ '@[email protected]' != '.' ]; then echo rm -f tls.tcl.h; rm -f tls.tcl.h; fi
# Clean the local build directory back to what it was after unpacking the
# distribution tarball
distclean: clean
|