Skip to content

Commit

Permalink
Adding make clean target.
Browse files Browse the repository at this point in the history
  • Loading branch information
mithro committed Aug 22, 2017
1 parent 7237c99 commit b9aaea5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,10 @@ docs:
clean-docs:
rm -fr docs/html docs/latex

# Global
clean: clean-docs clean-fx2 clean-audio-fx2 clean-unconfigured clean-microload
@true

# We depend on the .git file inside the directory as git creates an empty dir
# for us.
$(FX2LIBDIR)/.git: .gitmodules
Expand Down
4 changes: 2 additions & 2 deletions microload/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ i2c:
cat i2c-prod.hex

clean:
rm microload-i2c-prod.a51
rm *.hex *.lst
rm microload-i2c-prod.a51 || true
rm *.hex *.lst || true

# sdas8051 -l -o -s -p out.ihx microload.a51
# objcopy -I ihex -O binary out.ihx out.hex

0 comments on commit b9aaea5

Please sign in to comment.