blob: 7b963fa074a547622e54cb97bba460a60461738b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# clean.mk -- cleaning.
mostlyclean::
rm -f *.o
clean:: mostlyclean
-$(LIBTOOL) --mode=clean rm -f $(program) $(programs)
rm -f $(library).a squeeze *.bad *.dvi *.lj
distclean:: extraclean clean
rm -f Makefile Makefile.aux
rm -f config.status config.log config.cache c-auto.h libtool
rm -rf conftest*
rm -f stamp-auto stamp-tangle stamp-ctangle
rm -rf .libs
# Although we can remake configure and c-auto.in, we don't remove
# them, since many people may lack Autoconf. Use configclean for that.
maintainer-clean:: distclean
rm -f *.info*
extraclean::
rm -f *.aux *.bak *.bbl *.blg *.dvi *.log *.pl *.tfm *.vf *.vpl
rm -f *.*pk *.*gf *.mpx *.i *.s *~ *.orig *.rej *\#*
rm -f CONTENTS.tex a.out core mfput.* texput.* mpout.*
configclean:
rm -f configure c-auto.in c-auto.h stamp-*
# End of clean.mk.
|