Changeset 1366
- Timestamp:
- 10/15/11 08:19:39 (20 months ago)
- Location:
- trunk
- Files:
-
- 16 edited
-
Makefile (modified) (4 diffs)
-
bottom.inc (modified) (1 diff)
-
makefile.inc (modified) (4 diffs)
-
platform/a2000/sub/100c/Makefile (modified) (1 diff)
-
platform/d10/sub/100a/Makefile (modified) (1 diff)
-
platform/ixus100_sd780/sub/100b/Makefile (modified) (1 diff)
-
platform/ixus100_sd780/sub/100c/Makefile (modified) (1 diff)
-
platform/ixus120_sd940/sub/102c/Makefile (modified) (1 diff)
-
platform/ixus900_sd900/sub/100c/Makefile (modified) (1 diff)
-
platform/ixus90_sd790/sub/100c/Makefile (modified) (1 diff)
-
platform/ixus90_sd790/sub/100d/Makefile (modified) (1 diff)
-
platform/ixus95_sd1200/sub/100c/Makefile (modified) (1 diff)
-
platform/ixus980_sd990/sub/100e/Makefile (modified) (1 diff)
-
platform/ixus980_sd990/sub/101b/Makefile (modified) (1 diff)
-
platform/makefile_sub.inc (modified) (1 diff)
-
platform/sx110is/sub/100b/Makefile (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile
r1361 r1366 9 9 10 10 SUBDIRS=tools lib platform core loader CHDK 11 12 all: all-recursive13 14 clean: clean-recursive15 16 distclean: distclean-recursive17 11 18 12 fir: version firsub … … 31 25 ifeq ($(PLATFORMOS),vxworks) 32 26 @echo \-\> PS.FIR 33 $(PAKWIF) $(topdir)bin/PS.FIR \ 34 $(topdir)bin/main.bin\ 35 $(PLATFORMID) 0x01000101 27 $(PAKWIF) $(topdir)bin/PS.FIR $(topdir)bin/main.bin $(PLATFORMID) 0x01000101 36 28 endif 37 29 ifeq ($(PLATFORMOS),dryos) … … 55 47 @echo "**** Firmware creation completed successfully" 56 48 49 .PHONY: upload 57 50 upload: fir 58 51 @echo Uploading... … … 63 56 @echo "**** GCC $(GCC_VERSION) : BUILDING CHDK-$(VER), #$(BUILD_NUMBER) FOR $(PLATFORM)-$(PLATFORMSUB)" 64 57 58 .PHONY: version 65 59 version: FORCE 66 60 echo "**** Build: $(BUILD_NUMBER)" 67 # echo "BUILD_NUMBER := $(BUILD_NUMBER)" > version.inc 68 61 62 .PHONY: FORCE 69 63 FORCE: 70 64 -
trunk/bottom.inc
r515 r1366 4 4 #-include $(OBJS:%.o=.dep/%.d) 5 5 #endif 6 7 8 # Define empty recipes for source files (including the makefiles) 9 # to prevent make from trying implicit rules to create them. Speeds up build process 10 $(topdir)bottom.inc: ; -
trunk/makefile.inc
r1353 r1366 433 433 434 434 ifdef OPT_FI2 435 include $(topdir) /platform/fi2.inc435 include $(topdir)platform/fi2.inc 436 436 endif 437 437 … … 595 595 ########################################################################## 596 596 597 .PHONY: default 597 598 default: all 598 599 … … 621 622 endif 622 623 624 .PHONY: all 623 625 all: all-recursive 626 627 .PHONY: clean 624 628 clean: clean-recursive 629 630 .PHONY: distclean 625 631 distclean: distclean-recursive 626 632 … … 657 663 .SILENT: 658 664 endif 665 666 667 # Define empty recipes for source files (including the makefiles) 668 # to prevent make from trying implicit rules to create them. Speeds up build process 669 Makefile: ; 670 makefile: ; 671 $(topdir)makefile.inc: ; 672 $(topdir)buildconf.inc: ; 673 $(topdir)localbuildconf.inc: ; 674 $(topdir)version.inc: ; 675 $(topdir)platform/$(PLATFORM)/sub/$(PLATFORMSUB)/makefile.inc: ; 676 $(topdir)platform/fi2.inc: ; 677 *.c: ; 678 *.txt: ; 679 *.sh: ; 680 reversebytes.S: ; 681 callfunc.S: ; 682 setjmp.S: ; 683 stubs_min.S: ; 684 stubs_entry_2.S: ; -
trunk/platform/a2000/sub/100c/Makefile
r797 r1366 4 4 STUBS_AUTO_DEPS=boot.c capt_seq.c movie_rec.c 5 5 6 include $(topdir) /platform/makefile_sub.inc6 include $(topdir)platform/makefile_sub.inc -
trunk/platform/d10/sub/100a/Makefile
r897 r1366 3 3 STUBS_AUTO_DEPS=boot.c capt_seq.c movie_rec.c 4 4 5 include $(topdir) /platform/makefile_sub.inc5 include $(topdir)platform/makefile_sub.inc 6 6 -
trunk/platform/ixus100_sd780/sub/100b/Makefile
r1328 r1366 4 4 STUBS_AUTO_DEPS=boot.c capt_seq.c movie_rec.c 5 5 6 include $(topdir) /platform/makefile_sub.inc6 include $(topdir)platform/makefile_sub.inc 7 7 8 8 # debugging -
trunk/platform/ixus100_sd780/sub/100c/Makefile
r1173 r1366 4 4 STUBS_AUTO_DEPS=boot.c capt_seq.c movie_rec.c 5 5 6 include $(topdir) /platform/makefile_sub.inc6 include $(topdir)platform/makefile_sub.inc 7 7 8 8 # debugging -
trunk/platform/ixus120_sd940/sub/102c/Makefile
r1056 r1366 4 4 STUBS_AUTO_DEPS=boot.c capt_seq.c movie_rec.c 5 5 6 include $(topdir) /platform/makefile_sub.inc6 include $(topdir)platform/makefile_sub.inc 7 7 8 8 # debugging -
trunk/platform/ixus900_sd900/sub/100c/Makefile
r959 r1366 9 9 //STUBS_AUTO_DEPS=boot.c capt_seq.c movie_rec.c mount.c debug.c 10 10 11 include $(topdir) /platform/makefile_sub.inc11 include $(topdir)platform/makefile_sub.inc -
trunk/platform/ixus90_sd790/sub/100c/Makefile
r870 r1366 4 4 STUBS_AUTO_DEPS=boot.c capt_seq.c movie_rec.c 5 5 6 include $(topdir) /platform/makefile_sub.inc6 include $(topdir)platform/makefile_sub.inc -
trunk/platform/ixus90_sd790/sub/100d/Makefile
r866 r1366 4 4 STUBS_AUTO_DEPS=boot.c capt_seq.c movie_rec.c 5 5 6 include $(topdir) /platform/makefile_sub.inc6 include $(topdir)platform/makefile_sub.inc -
trunk/platform/ixus95_sd1200/sub/100c/Makefile
r910 r1366 4 4 STUBS_AUTO_DEPS=boot.c capt_seq.c movie_rec.c 5 5 6 include $(topdir) /platform/makefile_sub.inc6 include $(topdir)platform/makefile_sub.inc 7 7 8 8 # debugging -
trunk/platform/ixus980_sd990/sub/100e/Makefile
r740 r1366 4 4 STUBS_AUTO_DEPS=boot.c capt_seq.c movie_rec.c 5 5 6 include $(topdir) /platform/makefile_sub.inc6 include $(topdir)platform/makefile_sub.inc 7 7 8 8 # debugging -
trunk/platform/ixus980_sd990/sub/101b/Makefile
r792 r1366 4 4 STUBS_AUTO_DEPS=boot.c capt_seq.c movie_rec.c 5 5 6 include $(topdir) /platform/makefile_sub.inc6 include $(topdir)platform/makefile_sub.inc 7 7 8 8 # debugging -
trunk/platform/makefile_sub.inc
r1291 r1366 73 73 74 74 include $(topdir)bottom.inc 75 76 77 # Define empty recipes for source files (including the makefiles) 78 # to prevent make from trying implicit rules to create them. Speeds up build process 79 $(topdir)platform/makefile_sub.inc: ; -
trunk/platform/sx110is/sub/100b/Makefile
r749 r1366 4 4 STUBS_AUTO_DEPS=boot.c capt_seq.c movie_rec.c 5 5 6 include $(topdir) /platform/makefile_sub.inc6 include $(topdir)platform/makefile_sub.inc
Note: See TracChangeset
for help on using the changeset viewer.