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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

makefile.test 596B

123456789101112131415161718192021222324252627
  1. #
  2. # LUFA Library
  3. # Copyright (C) Dean Camera, 2014.
  4. #
  5. # dean [at] fourwalledcubicle [dot] com
  6. # www.lufa-lib.org
  7. #
  8. # --------------------------------------
  9. # LUFA Project Makefile.
  10. # --------------------------------------
  11. # Run "make help" for target help.
  12. MCU =
  13. ARCH =
  14. BOARD =
  15. F_CPU = $(F_USB)
  16. F_USB = 8000000
  17. OPTIMIZATION = 1
  18. TARGET = Test
  19. SRC = $(TARGET).c
  20. LUFA_PATH = ../../LUFA
  21. CC_FLAGS = -Werror
  22. DEBUG_LEVEL = 0
  23. # Include LUFA build script makefiles
  24. include $(LUFA_PATH)/Build/lufa_build.mk