https://bitbucket.org/hudson/magic-lantern
Raw File
Tip revision: ef33f4f8629c2d9727272a704c7d05f1d9cd26ac authored by a1ex on 18 April 2016, 19:53:28 UTC
Close branch play_mode
Tip revision: ef33f4f
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