https://bitbucket.org/hudson/magic-lantern
Raw File
Tip revision: 8845b89cc320956ef71a78767dacd4ad9df19696 authored by ArcziPL on 09 March 2019, 15:08:13 UTC
lossless: fix compressor configuration and resources for 70D to get valid compressed DNG and MLV
Tip revision: 8845b89
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
XOR_CHK:=$(notdir $(XOR_CHK))
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