https://bitbucket.org/hudson/magic-lantern
Raw File
Tip revision: bb5d3eccbb9115a9be45183578af9d0780bc2ee3 authored by David Milligan on 16 December 2016, 02:19:45 UTC
Merge unified into ml_dng
Tip revision: bb5d3ec
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