77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
| 77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
-
+
|
# 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] [email protected][email protected] [email protected][email protected]
rm -f [email protected][email protected] [email protected][email protected]
rm -f tls.tcl.h tls.tcl.h.new.1 tls.tcl.h.new.2
rm -f tcltls.syms
# Clean the local build directory back to what it was after unpacking the
# distribution tarball
distclean: clean
rm -f config.log config.status
rm -f dh_params.h.new dh_params.h
rm -f Makefile pkgIndex.tcl
rm -f tcltls.a.linkadd
rm -f tcltls.syms
# Clean the local build directory back to only thing things that exist in
# version control system
mrproper: distclean
rm -f @[email protected]/configure @[email protected]/config.sub @[email protected]/config.guess @[email protected]/install-sh
rm -f @[email protected]/aclocal.m4
rm -rf @[email protected]/autom4te.cache
.PHONY: all install uninstall clean distclean mrproper test
|