Changeset 1362
- Timestamp:
- 10/10/11 10:37:50 (20 months ago)
- Location:
- branches/philmoz
- Files:
-
- 6 edited
-
Makefile (modified) (3 diffs)
-
auto_build.sh (modified) (1 diff)
-
bottom.inc (modified) (1 diff)
-
camera_list.csv (modified) (4 diffs)
-
makefile.inc (modified) (4 diffs)
-
platform/makefile_sub.inc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/philmoz/Makefile
r1357 r1362 5 5 6 6 SUBDIRS=tools lib platform core loader CHDK 7 8 all: all-recursive9 10 clean: clean-recursive11 12 distclean: distclean-recursive13 7 14 8 .PHONY: fir … … 118 112 zip -9 $(topdir)bin/$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)-full$(STATE).zip $(topdir)CHDK/SCRIPTS/4Pack/* > $(DEVNULL) 119 113 zip -9 $(topdir)bin/$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)-full$(STATE).zip $(topdir)CHDK/SCRIPTS/4Pack/Lua/* > $(DEVNULL) 120 zip -9 $(topdir)bin/$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)-full$(STATE).zip $(topdir)CHDK/SCRIPTS/4Pack/uBasic/* > $(DEVNULL) 114 zip -9 $(topdir)bin/$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)-full$(STATE).zip $(topdir)CHDK/SCRIPTS/4Pack/uBasic/* > $(DEVNULL) 115 zip -9 $(topdir)bin/$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)-full$(STATE).zip $(topdir)CHDK/SCRIPTS/EDITOR/* > $(DEVNULL) 121 116 zip -9 $(topdir)bin/$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)-full$(STATE).zip $(topdir)CHDK/syscurves.CVF > $(DEVNULL) 122 117 zip -9j $(topdir)bin/$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)-full$(STATE).zip $(topdir)doc/changelog.txt > $(DEVNULL) … … 176 171 batch-clean: 177 172 sh auto_build.sh $(MAKE) clean camera_list.csv 178 179 180 # Define empty recipes for all the included makefiles (including this one)181 # This stops gmake from attempting to see if the makefiles need to be rebuilt182 Makefile: ;183 makefile.inc: ;184 version.inc: ;185 buildconf.inc: ;186 localbuildconf.inc: ;187 $(topdir)/platform/fi2.inc: ;188 $(topdir)/platform/$(PLATFORM)/sub/$(PLATFORMSUB)/makefile.inc: ; -
branches/philmoz/auto_build.sh
r1357 r1362 9 9 if [ ${cam} != "CAMERA" ] && [ "${skip}" = "" ]; then \ 10 10 if [ "${state}" != "" ]; then state=_${state}; fi; \ 11 $1 -s --no-print-directory PLATFORM=${cam} PLATFORMSUB=${fw} STATE=${state} COPY_TO=${copy} $2 ; \11 $1 -s --no-print-directory PLATFORM=${cam} PLATFORMSUB=${fw} STATE=${state} COPY_TO=${copy} $2 || exit 1; \ 12 12 fi; 13 13 done < $3 -
branches/philmoz/bottom.inc
r515 r1362 4 4 #-include $(OBJS:%.o=.dep/%.d) 5 5 #endif 6 7 8 # Define empty recipes for all the included makefiles (including this one) 9 # This stops gmake from attempting to see if the makefiles need to be rebuilt 10 $(topdir)bottom.inc: ; -
branches/philmoz/camera_list.csv
r1357 r1362 1 1 CAMERA,FIRMWARE,BETA_STATUS,COPY_TO,SKIP_AUTOBUILD 2 a1100,100a,BETA,,3 a1100,100b,BETA,,4 2 a1100,100c,BETA,, 5 3 a2000,100c,BETA,, … … 12 10 a480,100b,,, 13 11 a490,100d,BETA,, 14 a490,100e,BETA,,15 12 a490,100f,BETA,, 16 13 a495,100d,BETA,, … … 60 57 ixus120_sd940,103b,BETA,, 61 58 ixus120_sd940,103c,BETA,, 62 ixus200_sd980,100c,BETA,,63 59 ixus200_sd980,101c,BETA,, 64 60 ixus200_sd980,101d,BETA,, … … 137 133 sx130is,101d,BETA,, 138 134 sx130is,101f,BETA,, 139 sx20,100f,,,140 135 sx20,102b,,, 141 136 sx20,102d,,, -
branches/philmoz/makefile.inc
r1358 r1362 10 10 # you may also set your default camera here 11 11 -include $(topdir)localbuildconf.inc 12 13 ifndef PLATFORM14 $(error PLATFORM has not been defined. Specify the PLATFORM to build on the command line or in localbuildconf.inc)15 endif16 ifndef PLATFORMSUB17 $(error PLATFORMSUB has not been defined. Specify the PLATFORMSUB to build on the command line or in localbuildconf.inc)18 endif19 20 12 include $(topdir)version.inc 21 include $(topdir)platform/$(PLATFORM)/sub/$(PLATFORMSUB)/makefile.inc 13 14 ifdef PLATFORM 15 ifdef PLATFORMSUB 16 include $(topdir)platform/$(PLATFORM)/sub/$(PLATFORMSUB)/makefile.inc 17 endif 18 endif 22 19 23 20 # Used in gui_debug.c for controlling memory browser allowed address ranges … … 223 220 endif 224 221 222 .PHONY: all 225 223 all: all-recursive 224 225 .PHONY: clean 226 226 clean: clean-recursive 227 228 .PHONY: distclean 227 229 distclean: distclean-recursive 228 230 … … 243 245 244 246 all-recursive: 247 ifndef PLATFORM 248 $(error PLATFORM has not been defined. Specify the PLATFORM to build on the command line or in localbuildconf.inc) 249 endif 250 ifndef PLATFORMSUB 251 $(error PLATFORMSUB has not been defined. Specify the PLATFORMSUB to build on the command line or in localbuildconf.inc) 252 endif 245 253 @for i in $(SUBDIRS); do \ 246 254 echo \>\> Entering to $(FOLDER)$$i; \ … … 259 267 .SILENT: 260 268 endif 269 270 271 # Define empty recipes for all the included makefiles (including this one) 272 # This stops gmake from attempting to see if the makefiles need to be rebuilt 273 Makefile: ; 274 $(topdir)makefile.inc: ; 275 $(topdir)buildconf.inc: ; 276 $(topdir)localbuildconf.inc: ; 277 $(topdir)version.inc: ; 278 $(topdir)platform/$(PLATFORM)/sub/$(PLATFORMSUB)/makefile.inc: ; 279 $(topdir)platform/fi2.inc: ; -
branches/philmoz/platform/makefile_sub.inc
r1320 r1362 73 73 74 74 include $(topdir)bottom.inc 75 76 77 # Define empty recipes for all the included makefiles (including this one) 78 # This stops gmake from attempting to see if the makefiles need to be rebuilt 79 $(topdir)platform/makefile_sub.inc: ;
Note: See TracChangeset
for help on using the changeset viewer.