-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmakefile
More file actions
40 lines (34 loc) · 1.03 KB
/
makefile
File metadata and controls
40 lines (34 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#
# LUFA Library
# Copyright (C) Dean Camera, 2014.
#
# dean [at] fourwalledcubicle [dot] com
# www.lufa-lib.org
#
# --------------------------------------
# LUFA Project Makefile.
# --------------------------------------
# Run "make help" for target help.
MCU = atmega32u4
ARCH = AVR8
BOARD = LEONARDO
F_CPU = 16000000
F_USB = $(F_CPU)
OPTIMIZATION = s
TARGET = SilverLinkClone
SRC = $(TARGET).c Descriptors.c TiLink.c $(LUFA_SRC_USB) $(LUFA_SRC_USBCLASS) $(LUFA_SRC_PLATFORM)
LUFA_PATH = LUFA-src
CC_FLAGS = -DUSE_LUFA_CONFIG_HEADER -IConfig -DNDEBUG
LD_FLAGS =
#OBJDIR = OBJ
AVRDUDE_PROGRAMMER = usbtiny
#REMOVE IF ON LINUX
SHELL=C:/Windows/System32/cmd.exe
# END REMOVE
# Default target
all:
# Include LUFA build script makefiles
include $(LUFA_PATH)/Build/lufa_core.mk
include $(LUFA_PATH)/Build/lufa_sources.mk
include $(LUFA_PATH)/Build/lufa_build.mk
include $(LUFA_PATH)/Build/lufa_avrdude.mk