https://bitbucket.org/hudson/magic-lantern
Raw File
Tip revision: 6d6d8270060718f9b45ce62f0dcc0b9f0ef92aa9 authored by alex@thinkpad.localdomain on 11 October 2017, 11:23:38 UTC
Merged patchmgr into card_fmt
Tip revision: 6d6d827
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