https://bitbucket.org/hudson/magic-lantern
Raw File
Tip revision: 7e280c83205f602a1711323e343f071b95f51e3f authored by alex@thinkpad on 29 June 2012, 09:00:21 UTC
Fixed black level (was disabled in backend but enabled in menu)
Tip revision: 7e280c8
Makefile
#Makefile for an autoexec.bin able to run on all cameras

TOP_DIR=../..
include $(TOP_DIR)/Makefile.top

MODEL=550D.60D.600D.50D.500D.5D2

include  $(TOP_DIR)/Makefile.inc

autoexec-all: reboot-all.o
	$(call build,LD,$(LD) \
		-o autoexec-all \
		-nostdlib \
		-march=armv5te \
		-e _start \
		-Ttext 0x800000 \
		$^ \
	); \

ROMBASEADDR		= 0xFF010000

x: autoexec-all autoexec-all.bin
	cp autoexec-all.bin autoexec.bin
	$(STAT_CMD) autoexec.bin; \

back to top