28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
clean:
rm -f tclpkcs11.@SHOBJEXT@ tclpkcs11.o
rm -f tclpkcs11.@SHOBJEXT@.a tclpkcs11.@SHOBJEXT@.def
distclean: clean
rm -rf autom4te.cache
rm -f config.log config.status
rm -f pkgIndex.tcl
rm -f Makefile
mrproper: distclean
rm -f aclocal.m4 config.guess config.sub configure install-sh
.PHONY: all install clean distclean mrproper
|
|
|
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
clean:
rm -f tclpkcs11.@SHOBJEXT@ tclpkcs11.o
rm -f tclpkcs11.@SHOBJEXT@.a tclpkcs11.@SHOBJEXT@.def
distclean: clean
rm -rf autom4te.cache
rm -f config.log config.status
rm -f pkgIndex.tcl tclpkcs11.syms
rm -f Makefile
mrproper: distclean
rm -f aclocal.m4 config.guess config.sub configure install-sh
.PHONY: all install clean distclean mrproper
|