https://bitbucket.org/hudson/magic-lantern
Revision 8059c51df90b4c55d2cb2ad50ad2fadd40b7a216 authored by alex@thinkpad on 02 September 2013, 17:02:31 UTC, committed by alex@thinkpad on 02 September 2013, 17:02:31 UTC
1 parent 0db63ee
Raw File
Tip revision: 8059c51df90b4c55d2cb2ad50ad2fadd40b7a216 authored by alex@thinkpad on 02 September 2013, 17:02:31 UTC
html2text.py: use justified alignment (credits: http://code.activestate.com/recipes/414870-align-text-string-using-spaces-between-words-to-fi/ )
Tip revision: 8059c51
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