Significantly reduce the size of the Mass Storage class bootloader, by removing depen...
[pub/USBasp.git] / Maintenance / makefile
1 #
2 # LUFA Library
3 # Copyright (C) Dean Camera, 2013.
4 #
5 # dean [at] fourwalledcubicle [dot] com
6 # www.lufa-lib.org
7 #
8
9 # Maintenance scripts not required by general LUFA users, used for project development purposes.
10
11
12 # Path to the root of the LUFA tree
13 LUFA_ROOT := ../
14
15 all:
16
17 # Update all Doxygen configuration files to the latest Doxygen version - force Markdown support to be disabled
18 upgrade-doxygen:
19 @echo Upgrading Doxygen.conf files...
20 @for doxygen_conf in `find $(LUFA_ROOT) -name Doxygen.conf`; do \
21 doxygen -u $$doxygen_conf; \
22 done;
23 @echo Doxygen configuration update complete.
24
25 # Make all possible bootloaders for all targets and configurations as set by the BootloaderTest build test
26 # and store them in a separate directory called "Bootloaders"
27 bootloaders:
28 @echo "build_bootloaders:" > BuildMakefile
29 @printf "\t-mkdir Bootloaders 2>/dev/null\n\n" >> BuildMakefile
30
31 @while read line; \
32 do \
33 build_cfg=`echo $$line | grep -v "#" | sed 's/ //g'`; \
34 \
35 if ( test -n "$$build_cfg" ); then \
36 build_bootloader=`echo $$build_cfg | cut -d'=' -f1`; \
37 build_cfg=`echo $$build_cfg | cut -d'=' -f2-`; \
38 \
39 build_arch=`echo $$build_cfg | cut -d':' -f1`; \
40 build_mcu=`echo $$build_cfg | cut -d':' -f2`; \
41 build_board=`echo $$build_cfg | cut -d':' -f3`; \
42 build_flashsize=`echo $$build_cfg | cut -d':' -f4`; \
43 build_bootsize=`echo $$build_cfg | cut -d':' -f5`; \
44 build_fusb=`echo $$build_cfg | cut -d':' -f6`; \
45 \
46 printf "Found '%s' with FLASH: %3s KB, BOOT: %3s KB, MCU: %12s / %4s, BOARD: %s, F_USB: %sMHz\n" $$build_bootloader $$build_flashsize $$build_bootsize $$build_mcu $$build_arch $$build_board $$build_fusb; \
47 \
48 printf "\t-mkdir Bootloaders/%s 2>/dev/null\n" $$build_bootloader >> BuildMakefile; \
49 printf "\t@echo Building '%s' with FLASH: %3s KB, BOOT: %3s KB, MCU: %12s, BOARD: %s, F_USB: %sMHz\n" $$build_bootloader $$build_flashsize $$build_bootsize $$build_mcu $$build_board $$build_fusb >> BuildMakefile; \
50 printf "\t$(MAKE) -C $(patsubst %/,%,$(LUFA_ROOT))/Bootloaders/%s/ clean hex ARCH=%s MCU=%s BOARD=%s FLASH_SIZE_KB=%s BOOT_SECTION_SIZE_KB=%s F_USB=%s000000 DEBUG_LEVEL=0\n" $$build_bootloader $$build_arch $$build_mcu $$build_board $$build_flashsize $$build_bootsize $$build_fusb >> BuildMakefile; \
51 printf "\tmv $(patsubst %/,%,$(LUFA_ROOT))/Bootloaders/%s/Bootloader%s.hex Bootloaders/%s/%s-%s-%s-BOARD_%s-BOOT_%sKB-%sMHz.hex\n\n" $$build_bootloader $$build_bootloader $$build_bootloader $$build_bootloader $$build_arch $$build_mcu $$build_board $$build_bootsize $$build_fusb >> BuildMakefile; \
52 fi; \
53 done < $(patsubst %/,%,$(LUFA_ROOT))/BuildTests/BootloaderTest/BootloaderDeviceMap.cfg
54
55 $(MAKE) -f BuildMakefile build_bootloaders
56 cp $(patsubst %/,%,$(LUFA_ROOT))/LUFA/License.txt Bootloaders
57 rm -f BuildMakefile
58
59 # Check the working branch documentation, ensure no placeholder values
60 check-documentation-placeholders:
61 @echo Checking for release suitability...
62 @if ( grep "XXXXXX" $(patsubst %/,%,$(LUFA_ROOT))/LUFA/DoxygenPages/*.txt > /dev/null ;); then \
63 echo " ERROR: Doxygen documentation has not been updated for release!"; \
64 exit 1; \
65 fi;
66 @if ( grep "000000" $(patsubst %/,%,$(LUFA_ROOT))/LUFA/Version.h > /dev/null ;); then \
67 echo " ERROR: Version header has not been updated for release!"; \
68 exit 1; \
69 fi;
70 @echo Done.
71
72 # Validate the working branch - compile all documentation, demos/projects/examples and run build tests
73 validate-branch:
74 $(MAKE) -C $(patsubst %/,%,$(LUFA_ROOT)) doxygen
75 $(MAKE) -C $(patsubst %/,%,$(LUFA_ROOT)) all DEBUG_LEVEL=0
76 $(MAKE) -C $(patsubst %/,%,$(LUFA_ROOT))/BuildTests all
77
78 # Validate the working branch for general release, check for placeholder documentation then build and test everything
79 validate-release: check-documentation-placeholders validate-branch
80
81
82 .PHONY: all upgrade-doxygen bootloaders check-documentation-placeholders validate-branch