diff options
| author | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2012-06-02 21:45:51 +0000 |
|---|---|---|
| committer | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2012-06-02 21:45:51 +0000 |
| commit | a741b8aeadc8313483f03a2f149029607e08a984 (patch) | |
| tree | c73db6ff85714280a38f853813fee6a89fe0a049 /LUFA/makefile | |
| parent | 44f1979025ee8542d54a562485cb6a41f49ba695 (diff) | |
Clean up CORE build system module, use simple rather than recursive make variables for internal constants and $(shell) derived values.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@2289 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'LUFA/makefile')
| -rw-r--r-- | LUFA/makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/LUFA/makefile b/LUFA/makefile index 5b186937..31c06b32 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: |
