aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/makefile
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2012-06-02 21:45:51 +0000
committerDean Camera <dean@fourwalledcubicle.com>2012-06-02 21:45:51 +0000
commit7655205aac2ae8aca89bcd4e3e056bb20a33414c (patch)
treec73db6ff85714280a38f853813fee6a89fe0a049 /LUFA/makefile
parent450ff51b7e3e8c5c8a39760bc05fb763abf780c0 (diff)
downloadlufa-7655205aac2ae8aca89bcd4e3e056bb20a33414c.tar.gz
lufa-7655205aac2ae8aca89bcd4e3e056bb20a33414c.tar.bz2
lufa-7655205aac2ae8aca89bcd4e3e056bb20a33414c.zip
Clean up CORE build system module, use simple rather than recursive make variables for internal constants and $(shell) derived values.
Diffstat (limited to 'LUFA/makefile')
-rw-r--r--LUFA/makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/LUFA/makefile b/LUFA/makefile
index 5b186937c..31c06b32f 100644
--- a/LUFA/makefile
+++ b/LUFA/makefile
@@ -9,8 +9,9 @@
# Makefile for the LUFA library itself.
# ---------------------------------------
-LUFA_VERSION_NUM = $(shell grep LUFA_VERSION_STRING Version.h | cut -d'"' -f2)
-EXCLUDE_FROM_EXPORT = Documentation DoxygenPages CodeTemplates Build *.conf *.tar *.o *.lss *.lst *.hex *.elf *.bin
+LUFA_VERSION_NUM := $(shell grep LUFA_VERSION_STRING Version.h | cut -d'"' -f2)
+EXCLUDE_FROM_EXPORT := Documentation DoxygenPages CodeTemplates Build *.conf *.tar *.o *.lss *.lst *.hex *.elf *.bin
+
DOXYGEN_OVERRIDE_PARAMS = PROJECT_NUMBER=$(LUFA_VERSION_NUM)
all: