https://bitbucket.org/hudson/magic-lantern
Raw File
Tip revision: f74809934e3a6bc580d3cee883c5c8c601f28bc9 authored by Alex on 01 December 2016, 16:21:51 UTC
Close branch raw_rec_x_res_fix.
Tip revision: f748099
Makefile
#Makefile for an autoexec.bin able to run on all cameras

x: prepare-all autoexec-all autoexec.bin
#	cp autoexec-all.bin autoexec.bin
	$(call build,STAT,$(STAT_CMD) autoexec.bin)

prepare-all:
	$(MAKE) -C .. all-supported-unified-models

reboot-all.o : prepare-all

autoexec.bin: autoexec-all.bin
	$(call build,CP,$(CP) autoexec-all.bin autoexec.bin)

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

clean::
	$(call rm_files, autoexec-all autoexec-all.bin)

MODEL:=UNIFIED

ML_MODEL_DIR = all

include  ../Makefile.platform

install:: $(PLATFORM_INSTALL_SUPPORTED_TARGETS) autoexec.bin
	$(call build,CP,$(CP) autoexec.bin $(INSTALL_DIR)/)

$(PLATFORM_INSTALL_ALL_TARGETS):
	$(call call_make_platform)
back to top