https://bitbucket.org/daniel_fort/magic-lantern
Raw File
Tip revision: 9deb463b03c181c9b1f2551ccd8c34bb16043ec6 authored by dannephoto on 14 June 2017, 00:48:35 UTC
Bouncyball mlv_dump steroid version
Tip revision: 9deb463
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