Changeset 1903


Ignore:
Timestamp:
06/10/12 01:57:24 (12 months ago)
Author:
reyalp
Message:

allow user specified camera list for batch builds, e.g. make CAMERA_LIST=mycams.csv batch-zip

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Makefile

    r1902 r1903  
    33 
    44tmp:=$(shell echo "BUILD_SVNREV := $(DEF_SVN_REF)" > revision.inc) 
     5 
     6# can override on command line or *buildconf.inc for custom subsets 
     7CAMERA_LIST=camera_list.csv 
    58 
    69include makefile.inc 
     
    205208 
    206209batch-zip: version alltools 
    207         SKIP_TOOLS=1 sh tools/auto_build.sh $(MAKE) firzipsub camera_list.csv 
     210        SKIP_TOOLS=1 sh tools/auto_build.sh $(MAKE) firzipsub $(CAMERA_LIST) 
    208211        @echo "**** Summary of memisosizes" 
    209212        cat $(topdir)bin/caminfo.txt 
     
    211214 
    212215batch-zip-complete: version alltools 
    213         SKIP_TOOLS=1 sh tools/auto_build.sh $(MAKE) firzipsubcomplete camera_list.csv 
     216        SKIP_TOOLS=1 sh tools/auto_build.sh $(MAKE) firzipsubcomplete $(CAMERA_LIST) 
    214217        @echo "**** Summary of memisosizes" 
    215218        cat $(topdir)bin/caminfo.txt 
     
    219222# Note this will not fail, just prints all the missing ones 
    220223batch-print-missing-dumps: 
    221         sh tools/auto_build.sh $(MAKE) print-missing-dump camera_list.csv 
     224        sh tools/auto_build.sh $(MAKE) print-missing-dump $(CAMERA_LIST) 
    222225 
    223226batch-clean: 
    224         sh tools/auto_build.sh $(MAKE) clean camera_list.csv 
     227        sh tools/auto_build.sh $(MAKE) clean $(CAMERA_LIST) 
Note: See TracChangeset for help on using the changeset viewer.