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