https://bitbucket.org/hudson/magic-lantern
Raw File
Tip revision: f78a1ff905f6286a10d2071efeeed9dcee99fa5b authored by g3gg0 on 11 January 2016, 22:44:34 UTC
Close branch lua
Tip revision: f78a1ff
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