Keyboard firmwares for Atmel AVR and Cortex-M
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.

123456789101112131415161718192021
  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 Class Driver and Low Level Demos. Call with
  9. # "make all" to rebuild all demos of both types.
  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 ClassDriver $@
  16. $(MAKE) -C LowLevel $@