You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

70 lines
1.1 KiB

13 years ago
13 years ago
13 years ago
Makefile redo & other features (#395) * .build containment implemented * no destructive variable setting - builds in either folder * make from 3 places * cleans before each build * make from root with keyboard=keyboard, keymap=keymap * make from keyboard/keyboard with keymap=keymap * make from keymaps/keymap * only implemented on planck * adds color diag to avr-gcc * makefiles for all plancks, clean-up * quick build-all makefile for plancks * reformatting of make output (colors) * color toggle, tmk path corrections * correct if statement for color * move config.h to main makefile, updates preonic, atomic * format update, all keyboards targets * makefile optional for build all target, alps and arrow_pad updated * alps updated * make planck default, trying out travis recipe for all-keyboards * all-keymaps target, different travis recipe * updates alps64 * updates keyboards to new format * updates clue* projects * all projects updated, specialise EZ .hex, let .hex through * updates travis * automatically find root, keyboard, keymap * silent echo, cleaned-up mass make output * updates all keyboards' .hex files except EZ * Rename Bantam44.c to bantam44.c * Rename Bantam44.h to bantam44.h * nananana * adds six key keyboard * does same to ez as rest * updates send_string example * brings ergodox_ez up to date * updates template/new project script * adds sixkeyboard * adds readme for sixkeyboard * adds sixkeyboard to travis * filenames, gitignore mess * define clock prescaler stuff manually * make quick, size test example * documentation and dfu-no-build
7 years ago
  1. .dep
  2. *.o
  3. *.bin
  4. *.eep
  5. *.elf
  6. *.hex
  7. *.qmk
  8. !util/bootloader.hex
  9. !quantum/tools/eeprom_reset.hex
  10. *.log
  11. *.lss
  12. *.lst
  13. *.map
  14. *.sym
  15. *.swp
  16. tags
  17. *~
  18. build/
  19. .build/
  20. *.bak
  21. .vagrant/
  22. quantum/version.h
  23. .idea/
  24. CMakeLists.txt
  25. cmake-build-debug
  26. doxygen/
  27. .DS_STORE
  28. /util/wsl_downloaded
  29. /util/win_downloaded
  30. /keyboards/*/Makefile
  31. /keyboards/*/*/Makefile
  32. /keyboards/*/*/*/Makefile
  33. /keyboards/*/*/*/*/Makefile
  34. /keyboards/*/*/*/*/*/Makefile
  35. /keyboards/*/keymaps/Makefile
  36. /keyboards/*/*/keymaps/Makefile
  37. /keyboards/*/*/*/keymaps/Makefile
  38. /keyboards/*/*/*/*/keymaps/Makefile
  39. /keyboards/*/*/*/*/*/keymaps/Makefile
  40. # Eclipse/PyCharm/Other IDE Settings
  41. .cproject
  42. .project
  43. .settings/
  44. .idea
  45. *.iml
  46. .browse.VC.db*
  47. *.stackdump
  48. util/Win_Check_Output.txt
  49. # Let these ones be user specific, since we have so many different configurations
  50. .vscode/c_cpp_properties.json
  51. .vscode/launch.json
  52. .vscode/tasks.json
  53. .vscode/last.sql
  54. .vscode/temp.sql
  55. .stfolder
  56. .tags
  57. # ignore image files
  58. *.png
  59. *.jpg
  60. *.gif
  61. # Do not ignore MiniDox left/right hand eeprom files
  62. !keyboards/minidox/*.eep
  63. # things travis sees
  64. secrets.tar
  65. id_rsa_*
  66. /.vs