https://bitbucket.org/hudson/magic-lantern
Raw File
Tip revision: b1ad11748da6d54f9e3d9f27552e69d1ce2093b1 authored by alex@thinkpad on 16 August 2017, 22:38:37 UTC
Merged unified into mlv_dump_4k
Tip revision: b1ad117
Makefile
# Makefile for the various tools used in the build process

ifndef TOP_DIR
# if this is used as a standalone makefile, we need to include some additional stuff
TOP_DIR=..
include $(TOP_DIR)/Makefile.setup
endif

$(XOR_CHK): $(XOR_CHK).c
	$(call build,XOR_CHK,$(HOST_CC) $< -o $@)

clean::
	$(call rm_files, $(XOR_CHK) $(XOR_CHK).exe)
back to top