aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Host/ClassDriver/StillImageHost/makefile
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2009-06-19 04:34:35 +0000
committerDean Camera <dean@fourwalledcubicle.com>2009-06-19 04:34:35 +0000
commitbeb0b2bda0c45e958e88933a055d409e42fa0a0b (patch)
tree2a8db61b0ccdee8fcfb3d1ef551bf76049fb28bf /Demos/Host/ClassDriver/StillImageHost/makefile
parentdfa547164a1f9aefe202041e61075852f6e47191 (diff)
downloadlufa-beb0b2bda0c45e958e88933a055d409e42fa0a0b.tar.gz
lufa-beb0b2bda0c45e958e88933a055d409e42fa0a0b.tar.bz2
lufa-beb0b2bda0c45e958e88933a055d409e42fa0a0b.zip
Move LUFA compile time options to a new section in the application makefiles for clarity.
Diffstat (limited to 'Demos/Host/ClassDriver/StillImageHost/makefile')
-rw-r--r--Demos/Host/ClassDriver/StillImageHost/makefile11
1 files changed, 8 insertions, 3 deletions
diff --git a/Demos/Host/ClassDriver/StillImageHost/makefile b/Demos/Host/ClassDriver/StillImageHost/makefile
index 4c0181b23..c1cedd870 100644
--- a/Demos/Host/ClassDriver/StillImageHost/makefile
+++ b/Demos/Host/ClassDriver/StillImageHost/makefile
@@ -121,6 +121,13 @@ OBJDIR = .
LUFA_PATH = ../../../..
+# LUFA library compile-time options
+LUFA_OPTS = USE_NONSTANDARD_DESCRIPTOR_NAMES
+LUFA_OPTS += NO_STREAM_CALLBACKS
+LUFA_OPTS += USB_HOST_ONLY
+LUFA_OPTS += USE_STATIC_OPTIONS="(USB_OPT_REG_ENABLED | USB_OPT_AUTO_PLL)"
+
+
# List C source files here. (C dependencies are automatically generated.)
SRC = $(TARGET).c \
Lib/StillImageCommands.c \
@@ -181,9 +188,7 @@ CSTANDARD = -std=gnu99
# Place -D or -U options here for C sources
-CDEFS = -DF_CPU=$(F_CPU)UL -DF_CLOCK=$(F_CLOCK)UL -DBOARD=BOARD_$(BOARD)
-CDEFS += -DUSE_NONSTANDARD_DESCRIPTOR_NAMES -DNO_STREAM_CALLBACKS -DUSB_HOST_ONLY
-CDEFS += -DUSE_STATIC_OPTIONS="(USB_OPT_REG_ENABLED | USB_OPT_AUTO_PLL)"
+CDEFS = -DF_CPU=$(F_CPU)UL -DF_CLOCK=$(F_CLOCK)UL -DBOARD=BOARD_$(BOARD) $(patsubst %,-D%,$(LUFA_OPTS))
# Place -D or -U options here for ASM sources