Changeset 1336
- Timestamp:
- 09/12/11 12:30:59 (22 months ago)
- Location:
- branches/philmoz
- Files:
-
- 3 edited
-
Makefile (modified) (4 diffs)
-
makefile.cam (modified) (1 diff)
-
makefile.fw (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/philmoz/Makefile
r1333 r1336 9 9 10 10 SUBDIRS=tools lib platform core loader CHDK 11 12 # Define empty recipes for all the included makefiles (including this one) 13 # This stops gmake from attempting to see if the makefiles need to be rebuilt 14 Makefile: ; 15 makefile.inc: ; 16 version.inc: ; 17 buildconf.inc: ; 18 localbuildconf.inc: ; 19 $(topdir)/platform/fi2.inc: ; 20 $(topdir)/platform/$(PLATFORM)/sub/$(PLATFORMSUB)/makefile.inc: ; 11 21 12 22 all: all-recursive … … 107 117 endif 108 118 # if COPY_TO is defined then copy this camera/firmware version to the copied firmware version 119 # Define COPY_TO in $(topdir)/platform/$(PLATFORM)/sub/$(PLATFORMSUB)/makefile.inc of the source 120 # firmware version that needs to be copied to another firmware version 109 121 ifdef COPY_TO 110 122 cp $(topdir)bin/$(VER)-$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)$(STATE).zip $(topdir)bin/$(VER)-$(PLATFORM)-$(COPY_TO)-$(BUILD_NUMBER)$(STATE).zip … … 162 174 endif 163 175 # if COPY_TO is defined then copy this camera/firmware version to the copied firmware version 176 # Define COPY_TO in $(topdir)/platform/$(PLATFORM)/sub/$(PLATFORMSUB)/makefile.inc of the source 177 # firmware version that needs to be copied to another firmware version 164 178 ifdef COPY_TO 165 179 cp $(topdir)bin/$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)-full$(STATE).zip $(topdir)bin/$(PLATFORM)-$(COPY_TO)-$(BUILD_NUMBER)-full$(STATE).zip … … 185 199 batch-clean: 186 200 $(MAKE) -f makefile.cam VER=$(VER) ACTION=clean batch 201 202 203 .PHONY: camindex 204 camindex: 205 @echo "$(PLATFORM),$(PLATFORMSUB),$(STATE),$(COPY_TO)" 206 207 camindex.csv: Makefile makefile.cam makefile.fw 208 $(MAKE) -f makefile.cam VER=$(VER) ACTION=camindex batch > camindex.csv -
branches/philmoz/makefile.cam
r1333 r1336 1 2 # Define empty recipes for all the included makefiles (including this one) 3 # This stops gmake from attempting to see if the makefiles need to be rebuilt 4 makefile.cam: ; 1 5 2 6 # Define the list of cameras that are not included in the 'autobuild' -
branches/philmoz/makefile.fw
r1333 r1336 1 2 # Define empty recipes for all the included makefiles (including this one) 3 # This stops gmake from attempting to see if the makefiles need to be rebuilt 4 makefile.fw: ; 1 5 2 6 # Define the list of camera/firmware vresions that are not included in the 'autobuild' 3 7 # Entries here should be in the form CAMERA-FIRMWARE - e.g. g12-100c 4 # Do exclude all firmware versions for a specific camera add the camera8 # To exclude all firmware versions for a specific camera add the camera 5 9 # to the list in makefile.cam 6 10 SKIP_AUTOBUILD=""
Note: See TracChangeset
for help on using the changeset viewer.