https://bitbucket.org/daniel_fort/magic-lantern
Raw File
Tip revision: 7ce0cff69f5e8b5ce17b03f4ca207db2d661ff72 authored by Daniel Fort on 28 August 2015, 20:18:26 UTC
Close branch 6D.116.
Tip revision: 7ce0cff
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))
back to top