Imported Upstream version 2.9.0
[debian/cc1111] / 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] *.map
7         rm -f .[a-z]*~
8         rm -f savr$(EXEEXT)
9
10
11 # Deleting all files created by configuring or building the program
12 # -----------------------------------------------------------------
13 distclean: clean
14         rm -f config.cache config.log config.status
15         rm -f Makefile *.dep
16         rm -f *.obj *.list *.lst *.hex
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