https://bitbucket.org/hudson/magic-lantern
Raw File
Tip revision: 49d8fff0ab7f289d8ecb37c49e06dc4a22dd7c17 authored by Alex on 05 September 2016, 10:47:49 UTC
Close branch Gr3g01/dmspyextra-mpu_sendrecv-stubs-for-500d-1-1469028528673.
Tip revision: 49d8fff
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