Changeset 1745 for branches/release-1_0
- Timestamp:
- 03/17/12 04:19:12 (14 months ago)
- Location:
- branches/release-1_0
- Files:
-
- 1 added
- 3 edited
-
Makefile (modified) (3 diffs)
-
buildconf.inc (modified) (2 diffs)
-
chdk_ver.inc (added)
-
makefile.inc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/release-1_0/Makefile
r1712 r1745 2 2 srcdir=./ 3 3 4 include buildconf.inc5 4 tmp:=$(shell echo "BUILD_SVNREV := $(DEF_SVN_REF)" > revision.inc) 6 5 … … 133 132 zip -9 $(topdir)bin/$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)-full$(STATE).zip $(topdir)CHDK/BOOKS/* > $(DEVNULL) 134 133 zip -9 $(topdir)bin/$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)-full$(STATE).zip $(topdir)CHDK/CURVES/* > $(DEVNULL) 134 ifeq ($(VER),CHDK-DE) 135 zip -9 $(topdir)bin/$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)-full$(STATE).zip $(topdir)CHDK/CURVES/ISOBoost/* > $(DEVNULL) 136 endif 135 137 zip -9 $(topdir)bin/$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)-full$(STATE).zip $(topdir)CHDK/DATA/* > $(DEVNULL) 136 138 zip -9 $(topdir)bin/$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)-full$(STATE).zip $(topdir)CHDK/FONTS/* > $(DEVNULL) … … 143 145 zip -9 $(topdir)bin/$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)-full$(STATE).zip $(topdir)CHDK/SCRIPTS/EXAM/* > $(DEVNULL) 144 146 zip -9 $(topdir)bin/$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)-full$(STATE).zip $(topdir)CHDK/SCRIPTS/TEST/* > $(DEVNULL) 145 zip -9 $(topdir)bin/$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)-full$(STATE).zip $(topdir)CHDK/SCRIPTS/EDITOR/* > $(DEVNULL) 147 ifeq ($(VER),CHDK-DE) 148 zip -9 $(topdir)bin/$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)-full$(STATE).zip $(topdir)CHDK/SCRIPTS/MD/* > $(DEVNULL) 149 zip -9 $(topdir)bin/$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)-full$(STATE).zip $(topdir)CHDK/SCRIPTS/CURV/* > $(DEVNULL) 150 zip -9 $(topdir)bin/$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)-full$(STATE).zip $(topdir)CHDK/SCRIPTS/USER/* > $(DEVNULL) 151 else 152 zip -9 $(topdir)bin/$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)-full$(STATE).zip $(topdir)CHDK/SCRIPTS/EDITOR/* > $(DEVNULL) 153 endif 146 154 zip -9 $(topdir)bin/$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)-full$(STATE).zip $(topdir)CHDK/syscurves.CVF > $(DEVNULL) 147 155 zip -9j $(topdir)bin/$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)-full$(STATE).zip $(topdir)doc/changelog.txt > $(DEVNULL) -
branches/release-1_0/buildconf.inc
r1712 r1745 20 20 # WARNING: This is DANGEROUS. e.g. call_event_proc("EraseSectorOfRom",...) 21 21 # NOTE: the interface for this may change in the future, to support better support buffers etc 22 #OPT_LUA_CALL_NATIVE=1 22 ifeq ($(VER),CHDK-DE) 23 OPT_LUA_CALL_NATIVE=1 24 endif 23 25 24 26 # experimental - allocate memory from alternate heap. Default 2MB from EXMEM_RAMDISK … … 53 55 # desired language. 54 56 # Set the value to the language file name without extension - e.g. OPT_DEFAULT_LANG=russian 55 #OPT_DEFAULT_LANG= 57 ifeq ($(VER),CHDK-DE) 58 OPT_DEFAULT_LANG=german 59 endif 56 60 57 61 # Default svn revsion. Used when svnversion fail. -
branches/release-1_0/makefile.inc
r1715 r1745 1 VER=CHDK 1 include $(topdir)chdk_ver.inc 2 2 3 3 MEMISOSIZE="(&_end-&_start)"
Note: See TracChangeset
for help on using the changeset viewer.