diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-06-19 04:34:35 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-06-19 04:34:35 +0000 |
commit | beb0b2bda0c45e958e88933a055d409e42fa0a0b (patch) | |
tree | 2a8db61b0ccdee8fcfb3d1ef551bf76049fb28bf /Demos/OTG/TestApp | |
parent | dfa547164a1f9aefe202041e61075852f6e47191 (diff) | |
download | lufa-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/OTG/TestApp')
-rw-r--r-- | Demos/OTG/TestApp/makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Demos/OTG/TestApp/makefile b/Demos/OTG/TestApp/makefile index 55b98815a..b5c50bb61 100644 --- a/Demos/OTG/TestApp/makefile +++ b/Demos/OTG/TestApp/makefile @@ -122,6 +122,10 @@ OBJDIR = . LUFA_PATH = ../../..
+# LUFA library compile-time options
+LUFA_OPTS = USE_NONSTANDARD_DESCRIPTOR_NAMES
+
+
# List C source files here. (C dependencies are automatically generated.)
SRC = $(TARGET).c \
TestEvents.c \
@@ -184,8 +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
+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
|