https://bitbucket.org/daniel_fort/magic-lantern
Raw File
Tip revision: 5d31a8a22bf50f715148b12cc369a6616d29a23a authored by alex@thinkpad on 07 April 2016, 23:09:56 UTC
Proof of concept: remote Lua console using the Toshiba FlashAir Wi-Fi SD card
Tip revision: 5d31a8a
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