https://bitbucket.org/hudson/magic-lantern
Raw File
Tip revision: 9fa8a77b88e2f5f41a8c4672238cf8a78ff247cc authored by Daniel Fort on 19 December 2018, 18:09:53 UTC
Closed branch unified_650D_audio_meters_fix
Tip revision: 9fa8a77
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