https://bitbucket.org/hudson/magic-lantern
Raw File
Tip revision: 38cc83c1213196a14a4f72d73f6d7757ac41639a authored by g3gg0 on 14 November 2013, 13:49:00 UTC
Close branch andy600/mlv_rec-attempt-to-fix-pinkcorrupt-frame-1384104455568
Tip revision: 38cc83c
Makefile.installer

TOP_DIR?=../..
ML_SETUP_DISABLE_USER_CONFIGS=y
ML_SETUP_EXTENSION=installer
ML_SRC_PROFILE=installer

include $(TOP_DIR)/platform/Makefile.platform.base

installer:: build_fir

install:: install_fir

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

clean::
	$(call rm_files, updater*)

include $(TOP_DIR)/Makefile.inc
back to top