https://bitbucket.org/daniel_fort/magic-lantern
Raw File
Tip revision: 03d030afd0eec01129c7b8cd596cd4e66fb76755 authored by danne on 01 January 2017, 00:48:05 UTC
Closed branch raw_10bit_12bit_crop_rec
Tip revision: 03d030a
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