diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2013-03-20 19:56:35 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2013-03-20 19:56:35 +0000 |
commit | 04feb435edd50d00a7531f8be367f43ab126c7ba (patch) | |
tree | fe57869974735216e63bcf383a127623fa5f6bda | |
parent | 9d988fdc222ad518afa9cfcaaa97b5e8768fd483 (diff) | |
download | lufa-04feb435edd50d00a7531f8be367f43ab126c7ba.tar.gz lufa-04feb435edd50d00a7531f8be367f43ab126c7ba.tar.bz2 lufa-04feb435edd50d00a7531f8be367f43ab126c7ba.zip |
Fix broken core library Doxygen version number makefile macro.
-rw-r--r-- | LUFA/makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/LUFA/makefile b/LUFA/makefile index edb602f88..4453d18b7 100644 --- a/LUFA/makefile +++ b/LUFA/makefile @@ -9,7 +9,7 @@ # Makefile for the LUFA library itself. # --------------------------------------- -LUFA_VERSION_NUM = $(shell grep $(LUFA_PATH)/LUFA_VERSION_STRING Version.h | cut -d'"' -f2) +LUFA_VERSION_NUM = $(shell grep LUFA_VERSION_STRING $(LUFA_PATH)/Version.h | cut -d'"' -f2) EXCLUDE_FROM_EXPORT := Documentation DoxygenPages CodeTemplates Build StudioIntegration *.conf *.tar *.o *.d *.lss *.lst *.hex *.elf *.hex *.eep *.map *.bin # Default target - no default action when attempting to build the core directly |