* configure.in: added missing mcs51 in status output
[fw/sdcc] / as / link / mcs51 / clean.mk
1 # Deleting all files created by building the program
2 # --------------------------------------------------
3 include $(top_builddir)/Makefile.common
4
5 clean:
6         rm -f *core *[%~] *.[oa]
7         rm -f .[a-z]*~
8         rm -f $(top_builddir)/bin/aslink$(EXEEXT) aslink$(EXEEXT)
9
10
11 # Deleting all files created by configuring or building the program
12 # -----------------------------------------------------------------
13 distclean: clean
14         rm -f Makefile *.dep
15
16
17 # Like clean but some files may still exist
18 # -----------------------------------------
19 mostlyclean: clean
20
21
22 # Deleting everything that can reconstructed by this Makefile. It deletes
23 # everything deleted by distclean plus files created by bison, etc.
24 # -----------------------------------------------------------------------
25 realclean: distclean