Clean up CORE build system module, use simple rather than recursive make variables for internal constants and $(shell) derived values.
This commit is contained in:
parent
450ff51b7e
commit
7655205aac
9 changed files with 54 additions and 51 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue