https://bitbucket.org/hudson/magic-lantern
Raw File
Tip revision: 66bd407b9079709b7b580c23cff685c60977558f authored by a1ex on 09 January 2014, 09:43:55 UTC
Close branch marekk17/mlv_recc-60d-refresh-timer-1383689928704.
Tip revision: 66bd407
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