Makefile 186 B

123456
  1. CLEAN_FILES= *.bin *.map *.axf rtconfig.pyc .sconsign.dblite
  2. clean:
  3. find . \( -name "*.o" -o -name "*.bak" \) -type f -print | xargs rm -f
  4. rm -fr ./build
  5. rm -fr $(CLEAN_FILES)