Keyboard firmwares for Atmel AVR and Cortex-M
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

123456789101112131415161718192021222324
  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 Build Tests. Build Tests are
  9. # used to verify the correctness of the LUFA library, and are
  10. # not intended to be modified or compiled by non-developers.
  11. all:
  12. %:
  13. @echo Executing \"make $@\" on all LUFA build tests.
  14. @echo
  15. $(MAKE) -C BoardDriverTest $@
  16. $(MAKE) -C BootloaderTest $@
  17. $(MAKE) -C ModuleTest $@
  18. $(MAKE) -C SingleUSBModeTest $@
  19. $(MAKE) -C StaticAnalysisTest $@
  20. @echo
  21. @echo LUFA build test \"make $@\" operation complete.