Revision 6e3ef7b4da9c5b70c45e37bd5acf0fc50157b03c authored by a1ex on 10 March 2014, 22:54:12 UTC, committed by a1ex on 10 March 2014, 22:54:12 UTC
1 parent 38cd198
Raw File
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