https://bitbucket.org/hudson/magic-lantern
Raw File
Tip revision: 5da33cfc142292bc7f989d77f9e5a30af6e929c0 authored by a1ex on 31 January 2014, 16:49:17 UTC
Close branch 1100D_dual_iso
Tip revision: 5da33cf
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