Enabled VPATH feature: changed nearly all Makefiles (149 files).
[fw/sdcc] / doc / clean.mk
1 clean:
2         rm -rf $(MANUAL).html $(TSS).html $(CDB).html
3         rm -rf $(MANUAL).txt $(TSS).txt $(CDB).txt \
4                 *.pdf *.tex *.aux *.dvi *.idx *.ilg *.out\
5                 *.ind *.log *.toc *~ \#* *.ps */*.css */*.pl *.gif core *.glo
6         rm -rf sdcc-doc sdcc-doc.tar.bz2
7
8 # Deleting all files created by configuring or building the program
9 # -----------------------------------------------------------------
10 distclean: clean
11         rm -f Makefile
12
13 # Like clean but some files may still exist
14 # -----------------------------------------
15 mostlyclean: clean
16
17 # Deleting everything that can reconstructed by this Makefile. It deletes
18 # everything deleted by distclean plus files created by bison, etc.
19 # -----------------------------------------------------------------------
20 realclean: distclean