struct / union in initializer, RFE #901.
[sdcc.git] / sdcc / sdas / linksrc / clean.mk
blob9ff703e519a6fadb26fab69783962a849b899e5b
1 # Deleting all files created by building the program
2 # --------------------------------------------------
3 include $(top_builddir)/Makefile.common
5 clean:
6 rm -f *core *[%~] *.[oa]
7 rm -f .[a-z]*~
8 rm -f *.dep *.depcc *.depcxx
9 rm -rf obj
12 # Deleting all files created by configuring or building the program
13 # -----------------------------------------------------------------
14 distclean: clean
15 rm -f Makefile *.dep Makefile asxxxx_config.h
18 # Like clean but some files may still exist
19 # -----------------------------------------
20 mostlyclean: clean
23 # Deleting everything that can reconstructed by this Makefile. It deletes
24 # everything deleted by distclean plus files created by bison, etc.
25 # -----------------------------------------------------------------------
26 realclean: distclean