https://bitbucket.org/hudson/magic-lantern
Raw File
Tip revision: 5b8c7334f5c6b2382402db5df06f365cb8c68be6 authored by bouncyball on 09 July 2017, 09:24:03 UTC
fix: honor 'relaxed' mode during DNG export
Tip revision: 5b8c733
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