44
45
46
47
48
49
50
51
52
|
distclean: clean
rm -f Makefile pkgIndex.tcl config.log config.status nano.syms
rm -f nano.tcl.h
mrproper: distclean
rm -f configure aclocal.m4 config.guess config.sub install-sh
rm -rf tweetnacl blake2b
.PHONY: all test clean distclean mrproper
|
>
|
44
45
46
47
48
49
50
51
52
53
|
distclean: clean
rm -f Makefile pkgIndex.tcl config.log config.status nano.syms
rm -f nano.tcl.h
mrproper: distclean
rm -f configure aclocal.m4 config.guess config.sub install-sh
rm -rf tweetnacl blake2b
rm -rf build/tweetnacl/out build/blake2b/out
.PHONY: all test clean distclean mrproper
|