3 # Copyright (C) Dean Camera, 2020.
5 # dean [at] fourwalledcubicle [dot] com
8 # --------------------------------------
9 # LUFA Project Makefile.
10 # --------------------------------------
12 # Run "make help" for target help.
22 else ifeq ($(ARCH), XMEGA)
24 else ifeq ($(ARCH), UC3)
30 SRC = Test.c Dummy.S $(LUFA_SRC_USB)
31 LUFA_PATH = ../../LUFA
33 # Generic C/C++ compiler flags
36 CC_FLAGS += -Wformat=2
37 CC_FLAGS += -Winit-self
38 CC_FLAGS += -Wswitch-enum
41 CC_FLAGS += -Wpointer-arith
42 CC_FLAGS += -Wcast-align
43 CC_FLAGS += -Wwrite-strings
44 CC_FLAGS += -Wlogical-op
45 CC_FLAGS += -Wmissing-declarations
46 CC_FLAGS += -Wmissing-field-initializers
47 CC_FLAGS += -Wmissing-format-attribute
48 CC_FLAGS += -Woverlength-strings
50 # Only enable rendundant declaration warnings for AVR8 target (FIXME)
52 CC_FLAGS += -Wredundant-decls
55 # C compiler only flags
56 C_FLAGS += -Wmissing-parameter-type
57 C_FLAGS += -Wnested-externs
59 # Potential additional warnings to enable in the future (FIXME)
60 #CC_FLAGS += -Wswitch-default
61 #CC_FLAGS += -Wc++-compat
62 #CC_FLAGS += -Wcast-qual
63 #CC_FLAGS += -Wconversion
64 #CC_FLAGS += -Wjump-misses-init
65 #CC_FLAGS += -pedantic
67 # Include LUFA-specific DMBS extension modules
68 DMBS_LUFA_PATH ?= $(LUFA_PATH)/Build/LUFA
69 include $(DMBS_LUFA_PATH)/lufa-sources.mk
70 include $(DMBS_LUFA_PATH)/lufa-gcc.mk
72 # Include common DMBS build system modules
73 DMBS_PATH ?= $(LUFA_PATH)/Build/DMBS/DMBS
74 include $(DMBS_PATH)/core.mk
75 include $(DMBS_PATH)/gcc.mk