Skip to content

Instantly share code, notes, and snippets.

@hemmerling
Last active August 29, 2015 14:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hemmerling/a8e28dbb0b177f388a38 to your computer and use it in GitHub Desktop.
Save hemmerling/a8e28dbb0b177f388a38 to your computer and use it in GitHub Desktop.
Batch file "cleanproject.bat" to clean a PIC project, created with the PIC Mikroelektronika IDE
rem
rem Batch file "cleanproject.bat" to clean a PIC project,
rem created with the PIC Mikroelektronika IDE
rem
rem Be shure that there is a final last <carriage return> at the end of file,
rem so that the file ends with an empty line
rem
rem Filetypes which are created just by calling an IDE
del *.bmk
del *.brk
del *.c.ini
del *.cfg
del *.dct
rem Filetypes created by building a project, and
rem which can be selected by "Clean Project"
del *.asm
del *.asm.ini
del *.brk
del *.c.ini
del *.cfg
del *.cp
del *.dbg
del *.dct
del *.dlt
del *.hex
del *.log
del *.lst
del *.mcl
del *.mcppi_callertable.txt
del *.user.dic
rem
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment