https://bitbucket.org/hudson/magic-lantern
Raw File
Tip revision: d60df0fa69b4eeeee4b39e08a2b2e7d0c8f1e031 authored by Alex on 12 November 2016, 08:43:38 UTC
Close branch josepvm/dmspyc-added-memory-address-for-50d-1475103733676.
Tip revision: d60df0f
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