https://bitbucket.org/daniel_fort/magic-lantern
Raw File
Tip revision: f3cde4428e29b8552520251283d56df57c774d3b authored by danne on 21 April 2017, 22:57:52 UTC
Closed branch ml-dng-unified_6_RAWC_rec_trigger-latest_4K
Tip revision: f3cde44
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