Changeset 1902
- Timestamp:
- 06/10/12 01:13:14 (12 months ago)
- File:
-
- 1 edited
-
trunk/Makefile (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile
r1899 r1902 26 26 ZIPDIRS:=$(shell ls -R CHDK | grep CHDK/ | $(ESED) 's?:?/*?') 27 27 28 SUBDIRS=tools lib platform core loader CHDK 28 SUBDIRS=lib platform core loader CHDK 29 30 # SKIP_TOOLS prevents re-building tools in root level make, to speed up batch builds 31 ifndef SKIP_TOOLS 32 SUBDIRS+=tools 33 endif 29 34 30 35 .PHONY: fir … … 184 189 185 190 191 # for batch builds, build tools for vx and dryos once, instead of once for every firmware 192 alltools: 193 $(MAKE) -C tools PLATFORM=a610 PLATFORMSUB=100e clean all 194 $(MAKE) -C tools PLATFORM=a720 PLATFORMSUB=100c clean all 195 186 196 # define targets to batch build all cameras & firmware versions 187 197 # list of cameras/firmware versions is in 'camera_list.csv' … … 194 204 # - skip auto build (optional) :- any value in this column will exclude the camera/firmware from the auto build 195 205 196 batch-zip: version 197 sh tools/auto_build.sh $(MAKE) firzipsub camera_list.csv206 batch-zip: version alltools 207 SKIP_TOOLS=1 sh tools/auto_build.sh $(MAKE) firzipsub camera_list.csv 198 208 @echo "**** Summary of memisosizes" 199 209 cat $(topdir)bin/caminfo.txt 200 210 rm -f $(topdir)bin/caminfo.txt > $(DEVNULL) 201 211 202 batch-zip-complete: version 203 sh tools/auto_build.sh $(MAKE) firzipsubcomplete camera_list.csv212 batch-zip-complete: version alltools 213 SKIP_TOOLS=1 sh tools/auto_build.sh $(MAKE) firzipsubcomplete camera_list.csv 204 214 @echo "**** Summary of memisosizes" 205 215 cat $(topdir)bin/caminfo.txt
Note: See TracChangeset
for help on using the changeset viewer.