https://bitbucket.org/hudson/magic-lantern
Raw File
Tip revision: b4d7a29f9db4e141692449c3391370898e7bec7b authored by a1ex on 16 March 2014, 10:56:30 UTC
Close branch yuv_matrices
Tip revision: b4d7a29
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