d5ccd7929a42cac5771ab3c07ed8aa611dd5671c
[fw/sdcc] / sim / ucsim / avr.src / clean.mk
1 # avr.src/clean.mk
2
3 # Deleting all files created by building the program
4 # --------------------------------------------------
5 clean:
6         rm -f *core *[%~] *.[oa]
7         rm -f .[a-z]*~
8         rm -f *.lst *.list *.obj *.hex
9         rm -f savr
10
11
12 # Deleting all files created by configuring or building the program
13 # -----------------------------------------------------------------
14 distclean: clean
15         rm -f config.cache config.log config.status
16         rm -f Makefile *.dep
17
18
19 # Like clean but some files may still exist
20 # -----------------------------------------
21 mostlyclean: clean
22
23
24 # Deleting everything that can reconstructed by this Makefile. It deletes
25 # everything deleted by distclean plus files created by bison, etc.
26 # -----------------------------------------------------------------------
27 realclean: distclean
28
29 # End of avr.src/clean.mk