2012-06-07 22:49:47 +02:00
|
|
|
#
|
|
|
|
# LUFA Library
|
|
|
|
# Copyright (C) Dean Camera, 2012.
|
|
|
|
#
|
|
|
|
# dean [at] fourwalledcubicle [dot] com
|
|
|
|
# www.lufa-lib.org
|
|
|
|
#
|
|
|
|
# --------------------------------------
|
|
|
|
# LUFA Project Makefile.
|
|
|
|
# --------------------------------------
|
|
|
|
|
2012-08-11 13:51:43 +02:00
|
|
|
# Run "make help" for target help.
|
|
|
|
|
2012-06-07 22:49:47 +02:00
|
|
|
MCU =
|
|
|
|
ARCH =
|
|
|
|
BOARD =
|
|
|
|
F_CPU = $(F_USB)
|
|
|
|
F_USB = 8000000
|
|
|
|
OPTIMIZATION = 1
|
|
|
|
TARGET = Test
|
|
|
|
SRC = $(TARGET).c
|
2012-07-11 21:57:19 +02:00
|
|
|
LUFA_PATH = ../../LUFA
|
2012-06-07 22:49:47 +02:00
|
|
|
CC_FLAGS = -Werror
|
2012-07-15 11:59:35 +02:00
|
|
|
DEBUG_LEVEL = 0
|
2012-06-07 22:49:47 +02:00
|
|
|
|
|
|
|
# Include LUFA build script makefiles
|
2012-07-14 15:18:13 +02:00
|
|
|
include $(LUFA_PATH)/Build/lufa_build.mk
|