Keyboard firmwares for Atmel AVR and Cortex-M
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

12345678910111213141516171819202122
  1. #
  2. # LUFA Library
  3. # Copyright (C) Dean Camera, 2014.
  4. #
  5. # dean [at] fourwalledcubicle [dot] com
  6. # www.lufa-lib.org
  7. #
  8. # Makefile to build all the LUFA Demos. Call with "make all" to
  9. # rebuild all demos.
  10. # Projects are pre-cleaned before each one is built, to ensure any
  11. # custom LUFA library build options are reflected in the compiled
  12. # code.
  13. all:
  14. %:
  15. $(MAKE) -C Device $@
  16. $(MAKE) -C Host $@
  17. $(MAKE) -C DualRole $@