https://bitbucket.org/hudson/magic-lantern
Raw File
Tip revision: 153b0988c9d970c20349f067f5397d43fd6394f2 authored by g3gg0 on 01 March 2014, 21:24:40 UTC
some module updated for module unloading support
Tip revision: 153b098
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