-
Notifications
You must be signed in to change notification settings - Fork 1
/
makefile
59 lines (48 loc) · 1.75 KB
/
makefile
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#
# 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.
# Set the MCU accordingly to your device (e.g. at90usb1286 for a Teensy 2.0++, or atmega16u2 for an Arduino UNO R3)
MCU = at90usb1286
ARCH = AVR8
F_CPU = 16000000
F_USB = $(F_CPU)
OPTIMIZATION = s
TARGET = Joystick
MYSRC = nextreport.c $(TARGET).c Descriptors.c
SRC = $(MYSRC) $(LUFA_SRC_USB)
TESTSRC = nextreport.c test.c
LUFA_PATH = ../LUFA/LUFA
CC_FLAGS = -DUSE_LUFA_CONFIG_HEADER -IConfig/
LD_FLAGS =
# Default target
all: $(TARGET).hex test
nextreport.o: steps.o
test: $(subst .c,.o,$(TESTSRC))
$(CXX) $(LDFLAGS) -o test.exe $(subst .c,.o,$(TESTSRC)) $(LDLIBS)
test2: test2.o
$(CXX) $(LDFLAGS) -o test2.exe test2.o
%.o: %.c
$(CXX) $(CFLAGS) $(CPPFLAGS) -c $<
# 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_cppcheck.mk
include $(LUFA_PATH)/Build/lufa_doxygen.mk
include $(LUFA_PATH)/Build/lufa_dfu.mk
include $(LUFA_PATH)/Build/lufa_hid.mk
include $(LUFA_PATH)/Build/lufa_avrdude.mk
include $(LUFA_PATH)/Build/lufa_atprogram.mk
# Target for LED/buzzer to alert when print is done
with-alert: all
with-alert: CC_FLAGS += -DALERT_WHEN_DONE
clean:
rm -v test.exe test2.exe test.exe.stackdump test2.exe.stackdump steps.o $(subst .c,.o,$(TESTSRC)) $(subst .c,.o,$(MYSRC)) $(TARGET).bin $(TARGET).lss $(TARGET).sym $(TARGET).eep $(TARGET).hex $(TARGET).map $(TARGET).elf