struct / union in initializer, RFE #901.
[sdcc.git] / sdcc / device / non-free / include / clean.mk
blob74b12cbef89d4bc2f0d1a44224e4ad386a5c33ac
1 # Deleting all files created by building the program
2 # --------------------------------------------------
3 clean:
4 rm -f *core *[%~] *.[oa]
5 rm -f .[a-z]*~
8 # Deleting all files created by configuring or building the program
9 # -----------------------------------------------------------------
10 distclean: clean
11 rm -f Makefile *.dep
14 # Like clean but some files may still exist
15 # -----------------------------------------
16 mostlyclean: clean
19 # Deleting everything that can reconstructed by this Makefile. It deletes
20 # everything deleted by distclean plus files created by bison, etc.
21 # -----------------------------------------------------------------------
22 realclean: distclean