makefile 684 B

1234567891011121314151617181920212223242526272829303132
  1. #
  2. # DMBS Build System
  3. # Released into the public domain.
  4. #
  5. # dean [at] fourwalledcubicle [dot] com
  6. # www.fourwalledcubicle.com
  7. #
  8. # Run "make help" for target help.
  9. MCU = atmega128
  10. ARCH = AVR8
  11. F_CPU = 8000000
  12. OPTIMIZATION = s
  13. TARGET = Template
  14. SRC = $(TARGET).c
  15. CC_FLAGS =
  16. LD_FLAGS =
  17. # Default target
  18. all:
  19. # Include DMBS build script makefiles
  20. DMBS_PATH ?= ../DMBS
  21. include $(DMBS_PATH)/core.mk
  22. include $(DMBS_PATH)/gcc.mk
  23. include $(DMBS_PATH)/cppcheck.mk
  24. include $(DMBS_PATH)/doxygen.mk
  25. include $(DMBS_PATH)/dfu.mk
  26. include $(DMBS_PATH)/hid.mk
  27. include $(DMBS_PATH)/avrdude.mk
  28. include $(DMBS_PATH)/atprogram.mk